0
The command to remove rows from a table 'customer's is:
2 Antworten
0
delete from customer
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';