+ 1
Write a query to output the names of all customers from the USA.
can anyone help me with this
4 Respuestas
+ 1
SELECT fullname FROM Customers WHERE Country = 'USA'
+ 1
Select fullname from customer where country='USA';
0
Select fullname from customers where country='USA';
Do not forget the s in customers.
- 1
SELECT names FROM Customers WHERE Country = 'USA'
#sql #example