Advertisement
Guest User

Untitled

a guest
May 19th, 2017
509
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. mysql> select count(*) from serial;
  2. +----------+
  3. | count(*) |
  4. +----------+
  5. | 56810 |
  6. +----------+
  7.  
  8.  
  9. mysql> select count(*) from serialitems;
  10. +----------+
  11. | count(*) |
  12. +----------+
  13. | 42113 |
  14. +----------+
  15.  
  16. mysql> select count(*) from items;
  17. +----------+
  18. | count(*) |
  19. +----------+
  20. | 52475 |
  21. +----------+
  22.  
  23. select count(*) from serial, items where serialseq = itemnotes ;
  24. +----------+
  25. | count(*) |
  26. +----------+
  27. | 56194 |
  28. +----------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement