Mention some DML commands and DDL commands.
Answers
Answered by
0
Answer:
Explanation:
Truncate to delete data from the table. DROP to drop a table. RENAME to rename a table.
...
Data Manipulation Language (DML) commands:
INSERT to insert a new row.
UPDATE to update an existing row.
DELETE to delete a row.
MERGE for merging two rows or two tables.
Answered by
0
Answer:
- INSERT to insert a new row.
- UPDATE to update an existing row.
- DELETE to delete a row.
- MERGE for merging two rows or two tables.
Similar questions