Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. sqlite> select amount,area,name from gold where area = "The Hive" order by amount desc limit 15;
  2. 1133752.0|The Hive|a gigantic bee drone
  3. 630131.0|The Hive|a gigantic bee worker
  4. 572418.0|The Hive|a gigantic bee fighter
  5. 528376.0|The Hive|a gigantic bee worker
  6. 391026.0|The Hive|a gigantic bee worker
  7. 183424.0|The Hive|a gigantic bee fighter
  8. 96603.0|The Hive|a gigantic bee worker
  9. 85448.0|The Hive|a gigantic bee drone
  10. 43748.0|The Hive|a gigantic bee fighter
  11. 34820.0|The Hive|a gigantic bee drone
  12. 16700.0|The Hive|the princess bee
  13. 9086.0|The Hive|a gigantic bee drone
  14. 8255.0|The Hive|a gigantic bee drone
  15. 7500.0|The Hive|a gigantic bee guard
  16. 7500.0|The Hive|a gigantic bee guard
  17. sqlite>
  18. sqlite> select sum(amount) from gold where area = "The Hive";
  19. 3975799.0
  20. sqlite>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement