Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. if(myFlag.equals("") || isFlagPirate.equals("N")){
  2.  
  3. //get list of available ship id, ship name as options for the ship dropdown list
  4. sqlShipListString =
  5. "select distinct ship.ship_id, ship.name from admiralty_branch " +
  6. "left join ship on ship.ship_id=admiralty_branch.ship_id " +
  7. "where admiralty_branch_id= " + admiraltyid +
  8. " order by ship.name";
  9.  
  10. }else{
  11.  
  12. if(isFlagPirate.equals("Y")){
  13.  
  14. //get list of available ship id, ship name as options for the ship dropdown list
  15. sqlShipListString =
  16. "select distinct ship.ship_id, ship.name from ship " +
  17. "left join ship_type on ship.ship_id=ship_type.ship_id " +
  18. "left join fleet on ship_type.fleet_id=fleet.fleet_id " +
  19. "where fleet_id= " + fleetId +
  20. " order by ship.name";
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement