Computer Science, asked by michael939, 2 months ago

Q.13.THE CORRECT SYNTAX OF USING THE DELETE COMMAND TO DELETE RECORDS FROM A TABLE IS *

A. DLETE"TABLE_NAME" WHERE (CONDITION):
B. DELETE FROM "TABLE _NAME " WHERE (CONDITION)
C. FROM TABLE _ NAME " WHERE​

Answers

Answered by subhaswapnasahu
1

Answer:

DELETE Syntax

DELETE FROM table_name WHERE condition; Note: Be careful when deleting records in a table! Notice the WHERE clause in the DELETE statement. The WHERE clause specifies which record(s) should be deleted.

Answered by p3yanshupandey
0

Answer:

B. DELETE FROM "TABLE _NAME " WHERE (CONDITION)

Explanation:

Similar questions