1. SQL is a structured query language.
DML 数据操纵语言 用来操作数据库中所包含的数据 INSERT UPDA TE DELETE DDL 数据定义语言 用于创建和删除数据库对象等操作 CREATE DROP ALTER DQL 数据查询语言 用来对数据库中的数据进行查询 SELECT DCL 数据控制语言 用来控制数据库组件的存取许可、存取权限等 GRANT COMMIT ROLLBACK
2, including arithmetic operators, assignment operators, comparison operators, logical operators
Such as arithmetic operators, a Symbols, which are used to perform comparisons and mathematical operations between columns or variables
3. System database, mainly the storage aspect of the database.
information_schema: 主要存储系统中的一些数据库对象信息,如用户表信息、字段信息、权限信息、字符集信息和分区信息等。 performance_schema: 主要存储数据库服务器性能参数 mysql: 主要存储系统的用户权限信息 test: MySQL数据库管理系统自动创建的测试数据库,任何用户都可以使用
The above is the detailed content of What is the concept of SQL in mysql. For more information, please follow other related articles on the PHP Chinese website!