How to use AND & OR Operators in SQL

2 Answers

0 votes
SELECT * FROM Workers
WHERE city='Dallas' AND City='San Antonio'

 



answered Sep 13, 2015 by avibootz
0 votes
SELECT * FROM Workers
WHERE country='Texas' 
AND (city='Dallas' OR City='San Antonio')

 



answered Sep 13, 2015 by avibootz
...