Puneet Sharma
Puneet Sharma
7 years ago

which of the following is ddl statement in ms-access

A. INSERT

B. UPDATE

C. CREATE

D. DELETE

Answer: Option C

Solution(By Examveda Team)

DDL :
DDL is abbreviation of Data Definition Language. It is used to create and modify the structure of database objects in database.
CREATE – Creates objects in the database
ALTER – Alters objects of the database
DROP – Deletes objects of the database
TRUNCATE – Deletes all records from a table and resets table identity to initial value.

DML :
DML is abbreviation of Data Manipulation Language. It is used to retrieve, store, modify, delete, insert and update data in database.
SELECT – Retrieves data from a table
INSERT – Inserts data into a table
UPDATE – Updates existing data into a table
DELETE – Deletes all records from a table

DCL :
DCL is abbreviation of Data Control Language. It is used to create roles, permissions, and referential integrity as well it is used to control access to database by securing it.
GRANT – Gives user’s access privileges to database
REVOKE – Withdraws user’s access privileges to database given with the GRANT command

This Question Belongs to User Ask Question >> Miscellaneous

Join The Discussion

Related User Ask Questions