0 votes
in Sql by
Which of the following is not a DDL command?

a) TRUNCATE

b) ALTER

c) CREATE

d) UPDATE

1 Answer

0 votes
by

Answer is D) UPDATE

DDL commands are used to define the structure of the database, table, schemas, etc. It enables us to perform the operations like CREATE, DROP, ALTER, RENAME, and TRUNCATE schema objects.

An UPDATE command is used for managing the data stored in a database. It is an example of a DML command that also includes the INSERT and DELETE commands. UPDATE  is not a DDL command

Related questions

0 votes
asked Nov 6, 2021 in Sql by rajeshsharma
0 votes
asked Nov 19, 2021 in Other by DavidAnderson
...