Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. mysql> select i.entry as itemid, i.name as itemname, i.buyprice as price, v.extendedcost as extendedcost, i.quality as quality, i.itemlevel as itemlevel from item_template i, npc_vendor v where v.item = i.entry and v.entry = 18382 order by itemlevel desc;
  2. +--------+-----------------------------------------+-------+--------------+---------+-----------+
  3. | itemid | itemname | price | extendedcost | quality | itemlevel |
  4. +--------+-----------------------------------------+-------+--------------+---------+-----------+
  5. | 25827 | Muck-Covered Drape | 0 | 103 | 3 | 97 |
  6. | 25828 | Petrified Lichen Guard | 0 | 104 | 3 | 91 |
  7. | 29149 | Sporeling's Firestick | 0 | 1076 | 3 | 91 |
  8. | 29150 | Hardened Stone Shard | 0 | 1077 | 3 | 91 |
  9. | 38229 | Pattern: Mycah's Botanical Bag | 0 | 103 | 1 | 75 |
  10. | 34478 | Tiny Sporebat | 0 | 388 | 3 | 70 |
  11. | 22916 | Recipe: Transmute Primal Earth to Water | 0 | 103 | 2 | 70 |
  12. | 22906 | Recipe: Shrouding Potion | 0 | 388 | 2 | 67 |
  13. | 24539 | Marsh Lichen | 0 | 102 | 1 | 65 |
  14. | 27689 | Recipe: Sporeling Snack | 0 | 102 | 1 | 62 |
  15. | 30156 | Recipe: Clam Bar | 0 | 100 | 1 | 60 |
  16. | 25550 | Redcap Toadstool | 0 | 100 | 1 | 50 |
  17. | 25548 | Tallstalk Mushroom | 0 | 100 | 1 | 50 |
  18. | 31775 | Sporeggar Tabard | 0 | 1994 | 1 | 20 |
  19. +--------+-----------------------------------------+-------+--------------+---------+-----------+
  20. 14 rows in set
  21.  
  22. mysql>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement