Guest User

Untitled

a guest
Apr 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. mysql>
  2.  
  3. select
  4.  
  5. equip_links.*,
  6. pop_from.router router_from
  7. pop_to.router router_to
  8.  
  9. from equip_links,
  10. equip_pop pop_from,
  11. equip_pop pop_to
  12.  
  13. where
  14. equip_links.eqpop_id_from = pop_from.equip_id and
  15. equip_links.eqpop_id_to = pop_to.equip_id
  16. limit 1;
Add Comment
Please, Sign In to add comment