Antwoorden
select FirstName, LastName, Phone
from Customerselect DISTINCT Country
from Customer;select FirstName, LastName, Country
from Customer
Order By Country, LastName;select firstname, lastname
from Customer
where firstname = 'Mark';select *
from customer
where country = 'USA' and (city = 'New York' or city = 'Mountain View');Opdrachten
Last updated
Was this helpful?