Operator AND en OR
select *
from Invoice
where Total > 6 AND Total < 10;select *
from Customer
where Country = 'USA' OR City = 'New York';select *
from customer
where firstname = 'Mark' or firstname = 'Frank' and Country = 'USA';Last updated
Was this helpful?