Advertisement
Guest User

Untitled

a guest
Feb 17th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --Clausula WHERE
  2. select * from meteorologia.clima
  3.  
  4. select * from meteorologia.clima
  5. where  cidade = 'BILAC'
  6.  
  7. select * from meteorologia.clima
  8. where  cidade like '%CHA%'
  9. -- OR 'CHA%' OR '%CHA'
  10.  
  11. select * from meteorologia.clima
  12. where temp_min = 10 AND temp_max<25
  13. -- OR >10 OR <10
  14.  
  15. select * from meteorologia.clima
  16. where temp_min > 20 OR temp_max<30
  17.  
  18. select * from meteorologia.clima
  19. where temp_min in( 10, 15)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement