The command to remove rows from a table 'customer's is: | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

The command to remove rows from a table 'customer's is:

31st Jan 2017, 3:24 PM
ajith
2 Answers
0
delete from customer
31st Jan 2017, 3:26 PM
ajith
0
The DELETE statement is used to delete records in a table. Syntax DELETE FROM table_name -- All records will be removed WHERE some_column=some_value; -- data will be removed based on condition Example DELETE FROM Customers WHERE CustomerName='Alfreds' AND ContactName='Maria';
3rd Feb 2017, 12:58 PM
Akwin Lopez
Akwin Lopez - avatar