MySQL数据库是关系型数据库,它是用SQL语句进行数据存取的,所以熟练运用SQL语句是必须的,那么我们如何掌握呢,其实MySQL 内置的help 已经告诉你,如何运用它,下面我们就来看看

 1,登录MySQL,询问系统内置说明书

root@db02 scripts]# mysql -uroot -S /data/3306/mysql.sock Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 1Server version: 5.6.36 Source distributionCopyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> ? contents  ##我们不知道怎么用,就问系统,你都有什么内容,下面就是它反馈给你的内容Account Management      ##账户管理Administration		###管理Compound Statements     ##复合语句Data Definition 	##数据定义Data Manipulation	##数据操作Data Types	        ##数据类型Functions		##功能Functions and Modifiers for Use with GROUP BY  ##与组一起使用的函数和修饰符Geographic Features     ##地理特征Help Metadata 		##帮助元数据Language Structure 	##语言结构Plugins 		##插件Procedures 		##程序Storage Engines 	##存储引擎Table Maintenance       ##表维护Transactions  		##交易User-Defined Functions  ##用户定义的函数Utility  		##效用

2,我们按照它给的说明书,进行下面的询问

  1)例如:我们想新建1个数据库,怎么找到语法呢?

mysql> ?  Data Definition  #查看了上面的说明书,应该在数据如何定义这里面,所以?问号它;You asked for help about help category: "Data Definition"For more information, type 'help 
', where 
 is one of the followingtopics:   CREATE DATABASE   CREATE EVENT   CREATE FUNCTION   CREATE INDEX   CREATE LOGFILE GROUP   CREATE PROCEDURE   CREATE SERVER   CREATE TABLE   CREATE TABLESPACE   CREATE TRIGGER   .....若干省略选项

2)通过上面 就找到了 CREATE DATABASE 选项,但我还是不会建立数据库啊,那继续问吧

mysql> ? CREATE DATABASEName: 'CREATE DATABASE'Description:Syntax:CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name  #这次就找到新建数据库的语法了,直接创建即可    [create_specification] ...    ##需要注意{}大括号多选1,[]可选可忽略,其它必选create_specification:    [DEFAULT] CHARACTER SET [=] charset_name  | [DEFAULT] COLLATE [=] collation_nameCREATE DATABASE creates a database with the given name. To use thisstatement, you need the CREATE privilege for the database. CREATESCHEMA is a synonym for CREATE DATABASE.URL: http://dev.mysql.com/doc/refman/5.6/en/create-database.html

3)下面就是根据系统提示的语法,新建一个qiuyuetao的数据库

mysql> create database qiuyuetao;Query OK, 1 row affected (0.05 sec)mysql> show databases;+--------------------+| Database           |+--------------------+| information_schema || mysql              || performance_schema || qiuyuetao          || test               |+--------------------+5 rows in set (0.07 sec)

3,SQL语句分为3类

    1)DDL :数据定义的语言,可?Data Definition去查询

 create、alter、drop,管理基础数据:例如 库,表

    2)DCL:Data control Language-数据控制语言

 grant、revoke、commit,rollback,用户授权,权限回收,数据提交回滚

   3)DML:Date Manipulation Language-数据操作语言

  select、update、delete、insert,对表与记录 做操作

希望通过上面的内容,对您有所帮助,如有任何问题,可随时沟通,谢谢。