Computer Science, asked by asmitadagade1999, 2 months ago

Customers table has below structure
Customers(PAN custName contactNo, address city);
The SQL query that can be used to remove the column city is..?​

Answers

Answered by codinggem1
0

Answer:

ALTER TABLE Customers DROP COLUMN city;

Explanation:

Similar questions