Answer Posted / mobin mohan
Data Definition Language (DDL) statements are used to define the database structure or schema.
CREATE - to create objects in the database
ALTER - alters the structure of the database
DROP - delete objects from the database
TRUNCATE - remove all records from a table, including all spaces allocated for the records are removed
COMMENT - add comments to the data dictionary
RENAME - rename an object
Data Manipulation Language (DML) statements are used for managing data within schema objects.
SELECT - retrieve data from the a database
INSERT - insert data into a table
UPDATE - updates existing data within a table
DELETE - deletes all records from a table, the space for the records remain
MERGE - UPSERT operation (insert or update)
CALL - call a PL/SQL or Java subprogram
EXPLAIN PLAN - explain access path to data
LOCK TABLE - control concurrency
Data Control Language (DCL) statements.
GRANT - gives user's access privileges to database
REVOKE - withdraw access privileges given with the GRANT command
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How does csrf attack work?
Is it worth learning php in 2019?
What is static variable in php?
What is a comment in php?
What is php date function?
What are the two most common ways to start and finish a php block of code?
Inside a php function, what param needs to be set in order to access a global variable?
What is the difference between for and foreach loop in php?
What is a trait in php?
How does cookies work in php?
What the use of var_dump()?
What is the use of $_request variable?
Can we use session in mvc?
How to get the IP address of the client/user in PHP?
What are the difference between abstract class and interface in oops?