what will happen of we issue a delete SQL statement on table without condition
Answers
Answered by
6
Answer:
If you run a DELETE statement with no conditions in the WHERE clause, all of the records from the table will be deleted. As a result, you will most often include a WHERE clause with at least one condition in your DELETE statement.
Explanation:
SQL DELETE Statement
DELETE FROM table_name WHERE condition;
Example. DELETE FROM Customers WHERE CustomerName='Alfreds Futterkiste';
DELETE FROM table_name;
Example. DELETE FROM Customers
Answered by
0
Answer:
don't no but it's have a solution
Similar questions