DQL, DDL, DML, DCL Concepts

DQL, DDL, DML, DCL introduce the concept, not too much specific examples demonstrate:

DQL: database query language. Keywords: SELECT ... FROM ... WHERE.

DDL: database schema definition language. Keywords: CREATE, DROP, ALTER.

DML: Data Manipulation Language. Keywords: INSERT, UPDATE, DELETE.

DCL: Data Control Language. Keywords: GRANT, REVOKE.

TCL: Transaction Control Language. Keywords: COMMIT, ROLLBACK, SAVEPOINT.

DDL, DML, DCL, DQL, TCL together to form a complete language database.

Released four original articles · won praise 0 · Views 26

Guess you like

Origin blog.csdn.net/weixin_40524659/article/details/104286765