SQL介绍
SQL,即structured query language,结构化查询语言,是一种对关系型数据库中的数据进行管理和操作的语言方法,SQL包括6个部分
DQL:数据查询语言,最常用的为select,其他where、order by、group by、having
DML:数据操作语言,insert、delete、update
DDL:数据定义语言,create、alter、drop、truncate
DCL:数据控制语言,grant、revoke
TPL:事务处理语言,commit、rollback
CCL:指针控制语言,declare cursor、fetch into、update where current
SQL常见分类
DDL:create、alter、drop、truncate ←运维
DML:select、insert、delete、update ←开发
DCL:grant、revoke、commit、rollback ←运维