Computer Science, asked by akshatsinha414, 7 hours ago

Write a SQL statement that will display City column from the Customers table.

Answers

Answered by YasaAli
0

Answer:

SELECT CITY FROM CUSTOMERS;

Explanation:

Here CUSTOMERS is the name of the table and CITY is the name of the column

Similar questions