Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. ak_code bnum craft_type
  2. AA RA-85205 T154
  3. AA RA-85162 T154
  4. AA RA-26305 AN26
  5. BB RA-85343 T154
  6. CC RA-96002 IL96
  7. CC RA-96012 IL96
  8. CC RA-96016 IL96
  9.  
  10. select ak_code,craft_type from crafts
  11. where ak_code in(
  12. select ak_code from crafts
  13. group by ak_code
  14. having count(bnum)>1
  15. )
  16. group by ak_code,craft_type
  17.  
  18. ak_code craft_type
  19. AA AN26
  20. AA T154
  21. CC IL96
  22.  
  23. ak_code craft_type
  24. CC IL96
  25.  
  26. select ak_code,craft_type from crafts
  27. where ak_code in(
  28. select ak_code from crafts
  29. group by ak_code
  30. having count(bnum)>1 -- Количество бортов более 1 (аналогично count(1))
  31. and count(distinct craft_type)=1 -- Только один уникальный тип ВС
  32. )
  33. group by ak_code,craft_type
  34.  
  35. select ak_code,max(craft_type) from crafts
  36. group by ak_code
  37. having count(bnum)>1
  38. and max(craft_type)=min(craft_type)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement