Home > Database > Mysql Tutorial > body text

What is the concept of SQL in mysql

PHPz
Release: 2023-06-01 13:10:47
forward
1059 people have browsed it

1. SQL is a structured query language.

DML  数据操纵语言 用来操作数据库中所包含的数据 INSERT UPDA
TE DELETE
   DDL  数据定义语言 用于创建和删除数据库对象等操作 CREATE DROP ALTER
   DQL  数据查询语言 用来对数据库中的数据进行查询 SELECT
   DCL  数据控制语言 用来控制数据库组件的存取许可、存取权限等  GRANT COMMIT ROLLBACK
Copy after login

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数据库管理系统自动创建的测试数据库,任何用户都可以使用
Copy after login

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!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!