A database administrator needs to retrieve all customer names from a table named 'Customers' where the city is 'New York'. Which SQL statement should be used?
Correct. This query retrieves the Name column for rows where City is 'New York'.
Why this answer
The SELECT statement is used to query data. The correct syntax is SELECT column FROM table WHERE condition. Here, we need the Name column from Customers where City equals 'New York'.