Computer Science, asked by raghanipriya99, 7 months ago

which SQL statement is use to delete data from database?​

Answers

Answered by kweengmaealbaran9
2

Answer: First, you specify the table name where you want to remove data in the DELETE FROM clause.

Second, you put a condition in the WHERE clause to specify which rows to remove. If you omit the WHERE clause, the statement will remove all rows in the table.

Explanation:

Answered by rupalibhakat66
3

Answer:

SQL DELETE

1.First, you specify the table name where you want to remove data in the DELETE FROM clause.

2.Second, you put a condition in the WHERE clause to specify which rows to remove. If you omit the WHERE clause, the statement will remove all rows in the table.

Similar questions