delete table sql
DROP TABLE table_name;
sql delete
DELETE FROM table_name WHERE condition;
-- Ex.
DELETE FROM Customers WHERE CustomerName='Mustafa Mbari';
how to delete a table data in sql
DELETE FROM table_name; //will delete the table data without affecting the table structue
SQL DELETE
Mit DELETE werden einzelne oder mehrere Datensätze gelöscht. Mit WHERE
werden nur bestimmte Datensätez gelöscht.
DELETE FROM suppliers
WHERE
supplier_name = 'Microsoft';
sql delete
DELETE FROM my_table; -- all rows
DELETE FROM my_table WHERE my_id = 12345;
DELETE FROM my_table WHERE my_id IN (SELECT id2 FROM my_table2);
COMMIT; -- don't forget it...
delete from table sql
DELETE FROM `table` WHERE condition
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us