Guest User

Untitled

a guest
Nov 21st, 2017
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. +-------+--------+---------------+
  2. | label | Name | Budget |
  3. +-------+--------+---------------+
  4. | 1 | ABC | Allocated |
  5. | 1 | DEF | NotAllocated |
  6. | 0 | XYZ | Allocated |
  7. | 0 | LMN | Allocated |
  8. | 1 | QRS | NotAllocated |
  9. | | | |
  10. +-------+--------+---------------+
  11.  
  12. SELECT TOP 1600 *
  13. FROM myTable
  14. ORDER BY label ASC
  15.  
  16. UNION ALL
  17. SELECT TOP 1546 *
  18. FROM myTable
  19. ORDER BY label DESC
Add Comment
Please, Sign In to add comment