which SQL statement is use to delete data from database?
Answers
Answered by
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
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
Math,
3 months ago
Math,
3 months ago
English,
7 months ago
Math,
7 months ago
Computer Science,
10 months ago