Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. (select
  2. `precio`,
  3. `nombre`
  4. from `bancas`
  5. where `precio` between 200 and 1000)
  6. union
  7. (select
  8. `precio`,
  9. `nombre`
  10. from `sillas`
  11. where `precio` between 200 and 1000)
  12. union
  13. (select
  14. `precio`,
  15. `nombre`
  16. from `mesas`
  17. where precio between 200 and 1000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement