0 votes
in Oracle by

In SQL, which of the following is not a data Manipulation Language Commands?

(a) Delete

(b) Truncate

(c) Update

(d) Create

1 Answer

0 votes
by

Correct answer is (b) Truncate

Explanation: The SQL TRUNCATE TABLE command is used to delete complete data from an existing table.You can also use DROP TABLE command to delete complete table but it would remove complete table structure form the database and you would need to re-create this table once again if you wish you store some data.

Related questions

0 votes
asked Nov 25, 2021 in Oracle by DavidAnderson
0 votes
asked Nov 24, 2021 in Oracle by DavidAnderson
...