0

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

31st Jan 2017, 3:24 PM
ajith
2 Antworten
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