Bootstrap

MySQL基础

MySQL基础

一、关系型数据库介绍

1.数据库结构模型

数据结构模型主要有:

  • 层次模型

  • 网状结构

  • 关系模型

模型概念
层次模型层次模型是一种以树状结构组织数据的模型。它使用父子关系将数据组织成层次结构,其中每个节点都有一个父节点和零个或多个子节点。这种模型适用于表示具有明确定义的层次结构的数据,例如组织结构或文件系统。
网状结构网状结构是一种以网状连接方式组织数据的模型。在网状结构中,每个数据元素可以与多个其他数据元素直接连接,形成一个复杂的网络。这种模型适用于表示具有复杂关系的数据,例如图形数据或网络拓扑。
关系模型关系模型是一种使用表格和关系来组织数据的模型。在关系模型中,数据被组织成多个表格,每个表格包含多个行和列。表格之间通过关系建立连接,这些关系可以是一对一、一对多或多对多的关系。这种模型适用于表示结构化数据,并支持强大的查询和数据操作功能。

这些概念在数据库设计和数据管理中起着重要的作用,根据具体的需求和数据结构,选择适合的模型可以提高数据的组织和查询效率。

2.关系型数据库管理系统(RDBMS)
RDBMS           //relational database management system

常见的关系型数据库管理系统:

  • MySQL:MySQL,MariaDB,Percona-Server
  • PostgreSQL (pgsql)
  • Oracle
  • Microsoft SQL Server

SQL的含义:Structure Query Language,结构化查询语言

约束:constraint,向数据表提供的数据要遵守的限制

  • 主键约束:一个或多个字段的组合,填入的数据必须能在本表中唯一标识本行。且必须提供数据,不能为空(NOT NULL),一个表只能存在一个。
  • 唯一键约束:一个或多个字段的组合,填入的数据必须能在本表中唯一标识本行。允许为空(NULL),一个表可以存在多个。
  • 外键约束:一个表中的某字段可填入数据取决于另一个表的主键已有的数据
  • 检查性约束

索引:将表中的一个或多个字段中的数据复制一份另存,并且这些数据需要按特定次序排序存储

3.关系型数据库的常见组件

关系型数据库的常见组件有:

组件作用
数据库:database数据库是一个独立的数据存储单元,用于存储一组相关的数据表和其他对象。它提供了一个逻辑和物理上的隔离环境,使得不同的用户和应用程序可以安全地访问和管理各自的数据。
表:table表格是关系型数据库的基本组成单位,用于存储数据。每个表格由一系列具有相同属性的列和多个行组成。列定义了每个数据项的类型,行包含了实际的数据。
索引:index索引是为了提高数据检索效率而创建的数据结构。它可以基于一个或多个列的值创建,并按照特定的排序方式存储数据,以便快速定位和访问数据。
视图:view视图是一个虚拟的表,它基于一个或多个实际表的查询结果而创建。视图可以过滤、变换和组合数据,并提供了一个简化和安全的访问接口。用户可以像访问表一样使用视图,而不必直接访问基础表。
用户:user用户是数据库中的一个标识,用于识别和控制不同的数据库操作者。每个用户有自己的用户名和密码,可以被授予不同的权限和角色,以限制其对数据库的访问和操作。
权限:privilege权限是指用户对数据库对象的操作权限。数据库管理系统可以将不同的权限授予用户,例如查询、插入、更新、删除等操作权限。通过权限管理,可以确保只有授权的用户能够操作和访问相应的数据。
存储过程:procedure存储过程是一组预编译的数据库操作语句,存储在数据库中并具有一个名称。它可以像程序一样接受参数、执行复杂的数据库操作和逻辑,并返回结果。存储过程可以被重复使用,提高了数据库的性能和可维护性。
存储函数:function存储函数类似于存储过程,但是它返回一个值,可以作为一个表达式的一部分使用。存储函数可以接受参数,执行一系列的数据库操作和计算,然后返回一个值。
触发器:trigger触发器是与表相关联的一段数据库代码,它在特定的数据库操作(如插入、更新、删除)发生时自动触发执行。触发器可以用于执行额外的业务逻辑、维护数据一致性和实现复杂的数据约束。
事件调度器:event scheduler事件调度器是一个数据库的任务调度器,可以自动执行一些计划性的工作。通过事件调度器,可以定期执行一些数据库维护、数据处理和清理等任务,提高数据库的自动化和效率。

这些组件在关系型数据库中扮演着不同的角色和功能,以支持数据的组织、访问、操作和维护。

4.SQL语句

SQL语句有三种:

  • DDL:Data Defination Language,数据定义语言
  • DML:Data Manipulation Language,数据操纵语言
  • DCL:Data Control Language,数据控制语言
SQL语句类型对应操作
DDLCREATE:创建 DROP:删除 ALTER:修改
DMLINSERT:向表中插入数据 DELETE:删除表中数据 UPDATE:更新表中数据 SELECT:查询表中数据
DCLGRANT:授权 REVOKE:移除授权

二、安装与配置MySQL

安装一个mysql有三种方式:

  • 源码编译安装(下载源码包然后编译安装)
  • 二进制包安装(下载二进制包安装)
  • 程序包管理器管理的程序包(yum安装)
二进制安装与配置mysql

mysql配置文件

mysql`的配置文件为`/etc/my.cnf

配置文件查找次序:若在多个配置文件中均有设定,则最后找到的最终生效

/etc/my.cnf --> /etc/mysql/my.cnf --> --default-extra-file=/PATH/TO/CONF_FILE --> ~/.my.cnf

mysql常用配置文件参数:

参数说明
port = 3306设置监听端口
socket = /tmp/mysql.sock指定套接字文件位置
basedir = /usr/local/mysql指定MySQL的安装路径
datadir = /data/mysql指定MySQL的数据存放路径
pid-file = /data/mysql/mysql.pid指定进程ID文件存放路径
user = mysql指定MySQL以什么用户的身份提供服务
skip-name-resolve禁止MySQL对外部连接进行DNS解析 使用这一选项可以消除MySQL进行DNS解析的时间。 若开启该选项,则所有远程主机连接授权都要使用IP地址方 式否则MySQL将无法正常处理连接请求

二进制安装mysql

备注:mysql的二进制包可以在https://pkgs.org上面去下载

//创建mysql用户和组
[root@lc ~]# groupadd -r -g 306 mysql
[root@lc ~]# useradd -r -M -s /sbin/nologin -g 306 -u 306 mysql
//我事先将mysql二进制包下载到了自己电脑上,然后传到Linux系统里面

//解压二进制包到/usr/local/
[root@lc ~]# tar -xf mysql-5.7.39-linux-glibc2.12-x86_64.tar.gz -C /usr/local/
[root@lc ~]# ls /usr/local/
apache    bin    include  libexec                              share
apr       etc    lib      mysql-5.7.39-linux-glibc2.12-x86_64  src
apr-util  games  lib64    sbin
[root@lc ~]# 


//创建目录链接
[root@lc ~]# cd /usr/local/
[root@lc local]# ls
apache    bin    include  libexec                              share
apr       etc    lib      mysql-5.7.39-linux-glibc2.12-x86_64  src
apr-util  games  lib64    sbin
[root@lc local]# ln -sv mysql-5.7.39-linux-glibc2.12-x86_64/ mysql
'mysql' -> 'mysql-5.7.39-linux-glibc2.12-x86_64/'
[root@lc local]# ll
total 0
drwxr-xr-x. 13 root root 152 Aug 28 15:50 apache
drwxr-xr-x.  6 root root  58 Aug 28 15:23 apr
drwxr-xr-x.  5 root root  43 Aug 28 15:28 apr-util
drwxr-xr-x.  2 root root   6 Jun 22  2021 bin
drwxr-xr-x.  2 root root   6 Jun 22  2021 etc
drwxr-xr-x.  2 root root   6 Jun 22  2021 games
drwxr-xr-x.  2 root root   6 Jun 22  2021 include
drwxr-xr-x.  2 root root   6 Jun 22  2021 lib
drwxr-xr-x.  3 root root  17 Aug 28 09:46 lib64
drwxr-xr-x.  2 root root   6 Jun 22  2021 libexec
lrwxrwxrwx.  1 root root  36 Aug 28 16:31 mysql -> mysql-5.7.39-linux-glibc2.12-x86_64/
drwxr-xr-x.  9 root root 129 Aug 28 16:28 mysql-5.7.39-linux-glibc2.12-x86_64
drwxr-xr-x.  2 root root   6 Jun 22  2021 sbin
drwxr-xr-x.  5 root root  49 Aug 28 09:46 share
drwxr-xr-x.  2 root root   6 Jun 22  2021 src
[root@lc local]# 


//修改目录/usr/local/mysql的属主属组
[root@lc local]# chown -R mysql:mysql /usr/local/mysql
[root@lc local]# ll /usr/local/mysql
lrwxrwxrwx. 1 mysql mysql 36 Aug 28 16:31 /usr/local/mysql -> mysql-5.7.39-linux-glibc2.12-x86_64/
[root@lc local]# 


//添加环境变量
[root@lc local]# echo 'export PATH=/usr/local/mysql/bin:$PATH' > /etc/profile.d/mysql.sh
[root@lc local]# source /etc/profile.d/mysql.sh
[root@lc local]# echo $PATH
/usr/local/mysql/bin:/usr/local/apache/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[root@lc local]# 

//建立数据存放目录
[root@lc local]# mkdir /opt/data
[root@lc local]# chown -R mysql.mysql /opt/data/
[root@lc local]# ll /opt/
total 0
drwxr-xr-x. 2 root  root  30 Aug 28 15:12 aliyun
drwxr-xr-x. 2 mysql mysql  6 Aug 28 16:50 data
drwxr-xr-x. 2 root  root   6 Aug 28 15:05 yumbackup				
[root@lc local]# 

//初始化数据库
[root@lc ~]# /usr/local/mysql/bin/mysqld --initialize --user=mysql --datadir=/opt/data/
2023-08-28T08:50:45.448280Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2023-08-28T08:50:45.587156Z 0 [Warning] InnoDB: New log files created, LSN=45790
2023-08-28T08:50:45.608931Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2023-08-28T08:50:45.663550Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: fa3ea031-457f-11ee-b2ed-000c29b9e9eb.
2023-08-28T08:50:45.664294Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2023-08-28T08:50:45.806139Z 0 [Warning] A deprecated TLS version TLSv1 is enabled. Please use TLSv1.2 or higher.
2023-08-28T08:50:45.806172Z 0 [Warning] A deprecated TLS version TLSv1.1 is enabled. Please use TLSv1.2 or higher.
2023-08-28T08:50:45.806466Z 0 [Warning] CA certificate ca.pem is self signed.
2023-08-28T08:50:45.815366Z 1 [Note] A temporary password is generated for root@localhost: hkP!oaHjQ5_/      //记住这个12位的临时密码“hkP!oaHjQ5_/”


//配置mysql
[root@lc ~]# ln -sv /usr/local/mysql/include/ /usr/local/include/mysql
'/usr/local/include/mysql' -> '/usr/local/mysql/include/'
[root@lc ~]# echo '/usr/local/mysql/lib' > /etc/ld.so.conf.d/mysql.conf
[root@lc ~]# ldconfig
[root@lc ~]#


//生成配置文件
[root@lc ~]# vim /etc/my.cnf
[root@lc ~]# cat /etc/my.cnf
[mysqld]
basedir = /usr/local/mysql
datadir = /opt/data
socket = /tmp/mysql.sock
port = 3306
pid-file = /opt/data/mysql.pid
user = mysql
skip-name-resolve
[root@lc ~]#


//配置服务启动脚本
[root@lc ~]# cp -a /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
[root@lc ~]# sed -ri 's#^(basedir=).*#\1/usr/local/mysql#g' /etc/init.d/mysqld
[root@lc ~]# sed -ri 's#^(datadir=).*#\1/opt/data#g' /etc/init.d/mysqld


//启动mysql
[root@lc ~]# service mysqld start
Starting MySQL.Logging to '/opt/data/centos-8-3.err'.
 SUCCESS! 
 

[root@lc ~]# ps -ef|grep mysql
root       55927       1  0 16:58 pts/0    00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/opt/data --pid-file=/opt/data/mysql.pid
mysql      56115   55927  1 16:58 pts/0    00:00:00 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/opt/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=centos-8-3.err --pid-file=/opt/data/mysql.pid --socket=/tmp/mysql.sock --port=3306
root       56145   54752  0 16:59 pts/0    00:00:00 grep --color=auto mysq

//3306端口已经起来了
[root@lc ~]# ss -anlt
State   Recv-Q  Send-Q   Local Address:Port    Peer Address:Port  Process  
LISTEN  0       128            0.0.0.0:22           0.0.0.0:*              
LISTEN  0       128               [::]:22              [::]:*              
LISTEN  0       80                   *:3306               *:*              
LISTEN  0       511                  *:80                 *:*     


//链接头文件
[root@lc ~]# ln -s /usr/local/mysql/include /usr/local/include/mysql/

//指定man文档位置
[root@lc ~]# echo 'MANPATH /usr/local/mysql/man' >> /etc/man.config

//指定库文件的位置
[root@lc ~]# vim /etc/ld.so.conf.d/mysql.conf 
[root@lc ~]# cat /etc/ld.so.conf.d/mysql.conf 
/usr/local/mysql/lib

//链接库文件
[root@lc ~]# ln -s /usr/lib64/libtinfo.so.6 /usr/lib64/libtinfo.so.5
[root@lc ~]# ln -s /usr/lib64/libncurses.so.6 /usr/lib64/libncurses.so.5


//修改密码,先用临时命令登录 
[root@lc ~]# mysql -uroot -p
Enter password:     //初始化数据库的时候会生成一个随机的临时密码,在上面可以看到
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.39

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


mysql> set password = password('12345678');      //设置你想设置的密码
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> quit
Bye
[root@lc ~]#


//配置mysql服务开机自启动
[root@lc ~]# chkconfig mysqld on

然后就可以正常登录和使用mysql了

三、使用MySQL

客户端:

  • mysql:CLI交互式客户端程序
  • mysql_secure_installation:安全初始化,强烈建议安装完以后执行此命令
  • mysqldump:mysql备份工具
  • mysqladmin

服务器端:

  • mysqld
1.mysql工具使用

语法:mysql [OPTIONS] [database]

//常用的OPTIONS: 
    -uUSERNAME       //指定用户名,默认为root
    -hHOST           //指定mysql服务器主机,默认为localhost,推荐使用ip地址
    -pPASSWORD       //指定用户的密码
    -P (大写)		//指定数据库监听的端口,如-P3307
    -V (大写)         //查看当前使用的mysql版本
    -e			 //不登录mysql执行sql语句后退出,常用于脚本。

示例:

//登录mysql
[root@lc ~]# mysql -uroot -plcwanf001  -P3306
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.39 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 
mysql> quit   (退出mysql)
Bye

注意:此处有一个警告信息:mysql: [Warning] Using a password on the command line interface can be insecure. 这个不是报错,而是警告你,在命令行界面明文使用密码是不安全的行为。

建议的做法是-p后面不接密码,使用交互式输入密码

[root@lc ~]# mysql -uroot -p
Enter password:     //在此处输入密码
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 5.7.39 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 
//查看mysql版本
[root@lc ~]# mysql -V
mysql  Ver 14.14 Distrib 5.7.39, for linux-glibc2.12 (x86_64) using  EditLine wrapper
//使用-e选项执行语句
[root@lc ~]# mysql -uroot -plcwanf001 -e "show databases;;"
mysql: [Warning] Using a password on the command line interface can be insecure.
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+

注意:-e后面的语句要用引号引起来

2.服务器监听的两种socket地址
socket类型说明
ip socket默认监听在tcp的3306端口,支持远程通信
unix sock监听在sock文件上(/tmp/mysql.sock,/var/lib/mysql/mysql.sock) 仅支持本地通信 server地址只能是:localhost,127.0.0.1

四、操作MySQL数据库

1.DDL操作

  • CREATE:创建

  • DROP:删除

  • ALTER:修改

数据库操作
数据的操作有:
1.创建数据库
2.显示数据库
3.使用数据库
4.修改数据库
5.删除数据库

创建数据库:根据项目需求创建一个存储数据的仓库

  • 使用create database 数据库名字创建
    • 数据库层面可以指定字符集:charset / character set
    • 数据库层面可以指定校对集:collate
  • 创建数据库会在磁盘指定存放处产生一个文件夹
  • 创建语法
create database 数据库名字 [数据库选项];
//创建数据库
mysql> create database test;
Query OK, 1 row affected (0.00 sec)

//创建一个数据库并指定字符集
mysql> create database kook charset utf8;
Query OK, 1 row affected (0.00 sec)

显示数据库:通过客户端指令来查看已有数据库

  • 数据库的查看是根据用户权限限定的
  • 数据库的查看分为两种查看方式:
    • 查看全部数据库
    • 查看数据库创建指令
//显示数据库
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| test               |
+--------------------+
5 rows in set (0.00 sec)

//显示数据库创建指令
mysql> create database kook charset utf8;
Query OK, 1 row affected (0.00 sec)

mysql> show create database kook;
+----------+---------------------------------------------------------------+
| Database | Create Database                                               |
+----------+---------------------------------------------------------------+
| kook     | CREATE DATABASE `kook` /*!40100 DEFAULT CHARACTER SET utf8 */ |
+----------+---------------------------------------------------------------+
1 row in set (0.00 sec)

使用数据库:指在进行具体SQL指令之前,让系统知道操作针对的是哪个数据库

  • 数据库的操作通常是针对数据表或者数据
  • 通过使用数据库可以让后续指令默认针对具体数据库环境
  • 使用数据库语法:use 数据库名字;
//使用数据库test
mysql> use test;
Database changed

修改数据库:修改数据库的相关库选项

  • 数据库名字不可修改(老版本可以,5.0以前)
    • 先新增
    • 后迁移
    • 最后删除
  • 数据库修改分为两个部分(库选项)
    • 字符集
    • 校对集
  • 数据库修改指令(与创建指令差不多)
alter database 数据库名字 库选项

示例

1、修改数据库字符集

alter database db_2 charset gbk;

2、修改数据库校对集(如果校队集修改必须同时改变字符集)

alter database db_3 charset gbk collate gbk_chinese_ci;

删除数据库:将当前已有数据库删除

  • 删除数据库会删除数据库内所有的表和数据
  • 删除数据库操作要慎重(删前备份)
  • 删除数据库后,对应的存储文件夹就会消失
  • 删除语法
drop database 数据库名字;
//删除数据库kook
mysql> drop database kook;
Query OK, 0 rows affected (0.00 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| test               |
+--------------------+
5 rows in set (0.00 sec)
表操作
表操作有:
1.创建表
2.显示表
3.查看表(结构)
4.删除表

创建数据表:根据业务需求,确定数据表的字段信息,然后创建表结构

  • 表与字段不分家,相辅相成
  • 表的创建需要指定存储的数据库
    • 明确指定数据库:数据库.表名
    • 先使用数据库:use 数据库名字
  • 字段至少需要指定名字、类型
  • 数据库表不限定字段数量
    • 每个字段间使用逗号,分隔
    • 最后一个字段不需要逗号
  • 表可以指定表选项(都有默认值)
    • 存储引擎:engine [=] 具体存储引擎
    • 字符集:[default] charset 具体字符集(继承数据库)
    • 校对集:collate(继承数据库)
  • 表创建语法
create table [数据库名.]表名(字段名 字段类型, ... ,字段名 字段类型)[表选项];
//创建一个student表
mysql> create table student (id int primary key auto_increment,name varchar(100) not null,age tinyint);
Query OK, 0 rows affected (0.01 sec)

显示数据表:客户端通过指令显示已有的数据表

  • 数据表的显示跟用户权限有关
  • 显示数据表有两种方式
    • 显示所有数据表
    • 显示具体数据表的创建指令

客户端通过指令显示已有的数据表

  • 数据表的显示跟用户权限有关
  • 显示数据表有两种方式
    • 显示所有数据表
    • 显示具体数据表的创建指令
//显示所有数据表
mysql> show tables;
+----------------+
| Tables_in_test |
+----------------+
| student        |
+----------------+
1 row in set (0.01 sec)


//显示具体数据表的创建指令
mysql> show create table student;
+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table   | Create Table                                                                                                                                                                                  |
+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| student | CREATE TABLE `student` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `age` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.03 sec)

查看数据表:指查看数据表中的具体结构

  • 通常是查看字段信息
  • 详细的显示字段的各项信息
  • 查看语法有三种(效果一样)
//查看表student的具体结构
mysql> desc student;
+-------+--------------+------+-----+---------+----------------+
| Field | Type         | Null | Key | Default | Extra          |
+-------+--------------+------+-----+---------+----------------+
| id    | int(11)      | NO   | PRI | NULL    | auto_increment |
| name  | varchar(100) | NO   |     | NULL    |                |
| age   | tinyint(4)   | YES  |     | NULL    |                |
+-------+--------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)

删除数据表:删除数据表及表里面的所有内容

  • 删除表的的时候,表中数据同时会删除(不可逆)
  • 语法:drop table 表名;
//删除表student
mysql> drop table student;
Query OK, 0 rows affected (0.00 sec)
用户操作

mysql用户帐号由两部分组成,如’USERNAME’@‘HOST’,表示此USERNAME只能从此HOST上远程登录

这里(‘USERNAME’@‘HOST’)的HOST用于限制此用户可通过哪些主机远程连接mysql程序,其值可为:

  • IP地址,如:192.168.179.11
  • localhost:本机
  • 通配符
    • %:匹配任意长度的任意字符,常用于设置允许从任何主机登录
    • _:匹配任意单个字符

创建数据库用户

//语法:CREATE USER 'username'@'host' [IDENTIFIED BY 'password'];

//创建数据库用户wanf
mysql> create user 'wanf'@'localhost' identified by 'lcwanf001';
Query OK, 0 rows affected (0.00 sec)
//使用新创建的用户和密码登录数据库
[root@lc ~]# mysql -uwanf -plcwanf001
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 5.7.39 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

删除数据库用户

注意:删除用户时要看当前登录的用户是否具有权限

//语法:DROP USER 'username'@'host'; 

//删除用户wanf
mysql> drop user 'wanf'@'localhost';
Query OK, 0 rows affected (0.00 sec)
查看命令show/desc

查看表结构(desc)

mysql> use test;
Database changed
mysql> desc student;
+-------+--------------+------+-----+---------+----------------+
| Field | Type         | Null | Key | Default | Extra          |
+-------+--------------+------+-----+---------+----------------+
| id    | int(11)      | NO   | PRI | NULL    | auto_increment |
| name  | varchar(100) | NO   |     | NULL    |                |
| age   | tinyint(4)   | YES  |     | NULL    |                |
+-------+--------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)

查看支持的所有字符集

mysql> show character set;
+----------+---------------------------------+---------------------+--------+
| Charset  | Description                     | Default collation   | Maxlen |
+----------+---------------------------------+---------------------+--------+
| big5     | Big5 Traditional Chinese        | big5_chinese_ci     |      2 |
| dec8     | DEC West European               | dec8_swedish_ci     |      1 |
| cp850    | DOS West European               | cp850_general_ci    |      1 |
| hp8      | HP West European                | hp8_english_ci      |      1 |
| koi8r    | KOI8-R Relcom Russian           | koi8r_general_ci    |      1 |
| latin1   | cp1252 West European            | latin1_swedish_ci   |      1 |
| latin2   | ISO 8859-2 Central European     | latin2_general_ci   |      1 |
| swe7     | 7bit Swedish                    | swe7_swedish_ci     |      1 |
| ascii    | US ASCII                        | ascii_general_ci    |      1 |
(省略)
41 rows in set (0.00 sec)

查看当前数据库支持的所有存储引擎

mysql> show engines;
+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+
| Engine             | Support | Comment                                                        | Transactions | XA   | Savepoints |
+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+
| MRG_MYISAM         | YES     | Collection of identical MyISAM tables                          | NO           | NO   | NO         |
| CSV                | YES     | CSV storage engine                                             | NO           | NO   | NO         |
| InnoDB             | DEFAULT | Supports transactions, row-level locking, and foreign keys     | YES          | YES  | YES        |
| BLACKHOLE          | YES     | /dev/null storage engine (anything you write to it disappears) | NO           | NO   | NO         |
| MyISAM             | YES     | MyISAM storage engine                                          | NO           | NO   | NO         |
| PERFORMANCE_SCHEMA | YES     | Performance Schema                                             | NO           | NO   | NO         |
| ARCHIVE            | YES     | Archive storage engine                                         | NO           | NO   | NO         |
| MEMORY             | YES     | Hash based, stored in memory, useful for temporary tables      | NO           | NO   | NO         |
| FEDERATED          | NO      | Federated MySQL storage engine                                 | NULL         | NULL | NULL       |
+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+
9 rows in set (0.00 sec)

查看所有数据库

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| test               |
+--------------------+
5 rows in set (0.00 sec)

不进入某数据库而列出其包含的所有表

mysql> show tables from test;       //from后面接要查的数据库的名字
+----------------+
| Tables_in_test |
+----------------+
| student        |
+----------------+
1 row in set (0.00 sec)

查看某表的创建命令

//语法:SHOW CREATE TABLE table_name;
mysql> show create table student;
+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table   | Create Table                                                                                                                                                                                  |
+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| student | CREATE TABLE `student` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `age` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

查看某表的状态

//语法:SHOW TABLE STATUS LIKE 'table_name'\G

以/G结尾是为了让结果竖向显示
mysql> use test;
Database changed
mysql> show table status like 'student'\G
*************************** 1. row ***************************
           Name: student
         Engine: InnoDB
        Version: 10
     Row_format: Dynamic
           Rows: 0
 Avg_row_length: 0
    Data_length: 16384
Max_data_length: 0
   Index_length: 0
      Data_free: 0
 Auto_increment: 1
    Create_time: 2023-09-05 16:11:26
    Update_time: NULL
     Check_time: NULL
      Collation: latin1_swedish_ci
       Checksum: NULL
 Create_options: 
        Comment: 
1 row in set (0.00 sec)
获取帮助
//获取命令使用帮助
//语法:HELP keyword;
mysql> HELP CREATE TABLE;       //获取创建表的帮助
Name: 'CREATE TABLE'
Description:
Syntax:
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
    (create_definition,...)
    [table_options]
    [partition_options]

CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
    [(create_definition,...)]
    [table_options]
    [partition_options]
    [IGNORE | REPLACE]
    [AS] query_expression
 ......
 ......

2.DML操作

  • 增(INSERT)
  • 删(DELETE)
  • 改(UPDATE)
  • 查(SELECT)

均属于针对表的操作

INSERT语句
//增加数据操作 insert
  语法:INSERT [INTO] table_name [(column_name,...)] {VALUES | VALUE} (value1,...)(...),...
//在插入数据之前要先查看表的结构,要不然你不知道字段类型和字段数量
mysql> desc student;
+-------+--------------+------+-----+---------+----------------+
| Field | Type         | Null | Key | Default | Extra          |
+-------+--------------+------+-----+---------+----------------+
| id    | int(11)      | NO   | PRI | NULL    | auto_increment |
| name  | varchar(100) | NO   |     | NULL    |                |
| age   | tinyint(4)   | YES  |     | NULL    |                |
+-------+--------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)

//逐条插入记录
mysql> insert into student (id,name,age) value (1,'xc',20);
Query OK, 1 row affected (0.01 sec)

//批量插入记录
mysql> insert into student (id,name,age) values (2,'lxy',21),(3,'mk',21),(4,'cl',20);
Query OK, 3 rows affected (0.01 sec)
Records: 3  Duplicates: 0  Warnings: 0
SELECT语句
//查询表中的记录 select
  可以通过条件判断和通配符来查看某些特定的记录

字段column表示法

表示符代表什么?
*所有字段
as字段别名,如col1 AS alias1 当表名很长时用别名代替

条件判断语句WHERE

操作类型常用操作符
操作符>,<,>=,<=,=,!=
BETWEEN column# AND column#
LIKE:模糊匹配
RLIKE:基于正则表达式进行模式匹配
IS NOT NULL:非空
IS NULL:空
条件逻辑操作and、or、not
#操作符
>		//大于某个值
<		//小于某个值
>=		//大于且包括等于某个值
<=		//小于且包括等于某个值
!=		//不等于
=		//等于
BETWEEN A AND B		//在A和B之间,且包括A和B
(省略)

#条件逻辑
条件A and 条件B		//两个条件必须同时满足
条件A ro 条件B		//两个条件满足其中某一个即可
not 条件A			 //不满足这个条件

ORDER BY:排序,默认为升序(ASC)

ORDER BY语句意义
ORDER BY ‘column_name’根据column_name进行升序排序
ORDER BY ‘column_name’ DESC根据column_name进行降序排序
ORDER BY ’column_name’ LIMIT 2根据column_name进行升序排序 并只取前2个结果
ORDER BY ‘column_name’ LIMIT 1,2根据column_name进行升序排序 并且略过第1个结果取后面的2个结果
//查操作select
//语法:SELECT column1,column2,... FROM table_name [WHERE clause] [ORDER BY 'column_name' [DESC]] [LIMIT [m,]n];
mysql> use test;
Database changed

//查询所有字段的记录
mysql> select * from student;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | xc   |   20 |
|  2 | lxy  |   21 |
|  3 | mk   |   21 |
|  4 | cl   |   20 |
+----+------+------+
4 rows in set (0.00 sec)


//查询字段name的记录
mysql> select name from student;
+------+
| name |
+------+
| xc   |
| lxy  |
| mk   |
| cl   |
+------+
4 rows in set (0.00 sec)


//查询字段name和id的记录
mysql> select name,id from student;
+------+----+
| name | id |
+------+----+
| xc   |  1 |
| lxy  |  2 |
| mk   |  3 |
| cl   |  4 |
+------+----+
4 rows in set (0.00 sec)


//查询所有字段的记录,将age进行升序排序后显示结果
mysql> select * from student order by age;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | xc   |   20 |
|  4 | cl   |   20 |
|  2 | lxy  |   21 |
|  3 | mk   |   21 |
|  6 | lisi |   24 |
|  5 | dz   |   28 |
+----+------+------+
6 rows in set (0.00 sec)


//查询所有字段的记录,将age进行逆序排序后显示结果
mysql> select * from student order by age desc;
+----+------+------+
| id | name | age  |
+----+------+------+
|  5 | dz   |   28 |
|  6 | lisi |   24 |
|  2 | lxy  |   21 |
|  3 | mk   |   21 |
|  1 | xc   |   20 |
|  4 | cl   |   20 |
+----+------+------+
6 rows in set (0.00 sec)


//查询所有字段的记录,将age进行升序排序后,只取出前2条记录,显示出来
mysql> select * from student order by age limit 2;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | xc   |   20 |
|  4 | cl   |   20 |
+----+------+------+
2 rows in set (0.00 sec)

//查询所有字段的记录,将age进行降序排序后,跳过第一条,再取出前2条记录,显示出来
mysql> select * from student order by age desc limit 1,2; 
+----+------+------+
| id | name | age  |
+----+------+------+
|  6 | lisi |   24 |
|  2 | lxy  |   21 |
+----+------+------+
2 rows in set (0.00 sec)

//查询age=24的所有字段的记录(大于和小于类似)
mysql> select * from student where age = 24;
+----+------+------+
| id | name | age  |
+----+------+------+
|  6 | lisi |   24 |
+----+------+------+
1 row in set (0.00 sec)

//查询age在20到24之间的所有字段的记录
mysql> select * from student where age between 20 and 24;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | xc   |   20 |
|  2 | lxy  |   21 |
|  3 | mk   |   21 |
|  4 | cl   |   20 |
|  6 | lisi |   24 |
+----+------+------+
5 rows in set (0.00 sec)

//查看全部字段的记录,并且age不为空的
mysql> select * from student where age is not null;

//查看全部字段的记录,并且age为空的
mysql> select * from student where age is null;
update语句
//update更新数据(修改)
//语法:UPDATE table_name SET column1 = new_value1[,column2 = new_value2,...] [WHERE clause] [ORDER BY 'column_name' [DESC]] [LIMIT [m,]n];
mysql> select * from student;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | xc   |   20 |
|  2 | lxy  |   21 |
|  3 | mk   |   21 |
|  4 | cl   |   20 |
|  5 | dz   |   28 |
|  6 | lisi |   24 |
+----+------+------+
6 rows in set (0.00 sec)

//修改lisi的age为100
mysql> update student set age = 100 where name = 'lisi';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> select * from student;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | xc   |   20 |
|  2 | lxy  |   21 |
|  3 | mk   |   21 |
|  4 | cl   |   20 |
|  5 | dz   |   28 |
|  6 | lisi |  100 |
+----+------+------+
6 rows in set (0.00 sec)
delete语句
//delete 删除记录
mysql> select * from student;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | xc   |   20 |
|  2 | lxy  |   21 |
|  3 | mk   |   21 |
|  4 | cl   |   20 |
|  5 | dz   |   28 |
|  6 | lisi |  100 |
+----+------+------+
6 rows in set (0.00 sec)

//删除name=lisi的记录
mysql> delete from student where name = 'lisi';
Query OK, 1 row affected (0.00 sec)

mysql> select * from student;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | xc   |   20 |
|  2 | lxy  |   21 |
|  3 | mk   |   21 |
|  4 | cl   |   20 |
|  5 | dz   |   28 |
+----+------+------+
5 rows in set (0.00 sec)
truncate语句

truncate与delete的区别:

语句类型特点
deleteDELETE删除表内容时仅删除内容,但会保留表结构 DELETE语句每次删除一行,并在事务日志中为所删除的每行记录一项 可以通过回滚事务日志恢复数据 非常占用空间
truncate删除表中所有数据,且无法恢复 表结构、约束和索引等保持不变,新添加的行计数值重置为初始值 执行速度比DELETE快,且使用的系统和事务日志资源少 通过释放存储表数据所用的数据页来删除数据,并且只在事务日志中记录页的释放 对于有外键约束引用的表,不能使用TRUNCATE TABLE删除数据 不能用于加入了索引视图的表
//语法:truncate table_name;
mysql> select * from student;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | xc   |   20 |
|  2 | lxy  |   21 |
|  3 | mk   |   21 |
|  4 | cl   |   20 |
|  5 | dz   |   28 |
+----+------+------+
5 rows in set (0.00 sec)

//清空表内容
mysql> truncate student;
Query OK, 0 rows affected (0.01 sec)


mysql> select * from student;
Empty set (0.00 sec)    //没有任何记录


mysql> desc student;          //表结构还在
+-------+--------------+------+-----+---------+----------------+
| Field | Type         | Null | Key | Default | Extra          |
+-------+--------------+------+-----+---------+----------------+
| id    | int(11)      | NO   | PRI | NULL    | auto_increment |
| name  | varchar(100) | NO   |     | NULL    |                |
| age   | tinyint(4)   | YES  |     | NULL    |                |
+-------+--------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)

3.DCL操作

创建授权grant

权限类型(priv_type)

权限类型代表什么?
ALL所有权限
SELECT读取内容的权限
INSERT插入内容的权限
UPDATE更新内容的权限
DELETE删除内容的权限

指定要操作的对象db_name.table_name

表示方式意义
.所有库的所有表
db_name指定库的所有表
db_name.table_name指定库的指定表

注意:

WITH GRANT OPTION:被授权的用户可将自己的权限副本转赠给其他用户,说白点就是将自己的权限完全复制给另一个用户。不建议使用。

//语法:GRANT priv_type,... ON [object_type] db_name.table_name TO ‘username'@'host' [IDENTIFIED BY 'password'] [WITH GRANT OPTION];

建议每次授权后都执行一下flush privileges;刷新一下授权信息

授权wanf用户在数据库本机上登录访问所有数据库

mysql> grant all on *.* to 'wanf'@'localhost' identified by 'lcwanf001';
Query OK, 0 rows affected, 2 warnings (0.00 sec)

mysql> grant all on *.* to 'wanf'@'127.0.0.1' identifiedby 'lcwanf001';
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

授权wanf用户在192.168.179.10上远程登录访问数据库test

mysql> grant all on test.* to 'wanf'@'192.168.179.10' identified by 'lcwanf001';
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

授权wanf用户在192.168.179.10上远程登录访问数据库test里面的student表

mysql> grant all on test.class to 'wanf'@'192.168.179.10' identified by 'lcwanf001';
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

授权wanf用户在所有主机上远程登录访问数据库test

mysql> grant all on test.* to 'wanf'@'%' identified by 'lccwanf001';
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
查看授权

查看当前登录用户的授权信息

mysql> show grants;
+---------------------------------------------------------------------+
| Grants for root@localhost                                           |
+---------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION |
| GRANT PROXY ON ''@'' TO 'root'@'localhost' WITH GRANT OPTION        |
+---------------------------------------------------------------------+
2 rows in set (0.00 sec)

查看指定用户wanf的授权信息

mysql> show grants for wanf;
+------------------------------------------------+
| Grants for wanf@%                              |
+------------------------------------------------+
| GRANT USAGE ON *.* TO 'wanf'@'%'               |
| GRANT ALL PRIVILEGES ON `test`.* TO 'wanf'@'%' |
+------------------------------------------------+
2 rows in set (0.00 sec)

查看指定用户wanf在本机的授权信息

mysql> show grants for 'wanf'@'localhost';
+---------------------------------------------------+
| Grants for wanf@localhost                         |
+---------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'wanf'@'localhost' |
+---------------------------------------------------+
1 row in set (0.00 sec)

查看指定用户wanf在主机192.168.179.10的授权信息

mysql> show grants for 'wanf'@'192.168.179.10';
+-------------------------------------------------------------------+
| Grants for wanf@192.168.179.10                                    |
+-------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'wanf'@'192.168.179.10'                     |
| GRANT ALL PRIVILEGES ON `test`.* TO 'wanf'@'192.168.179.10'       |
| GRANT ALL PRIVILEGES ON `test`.`class` TO 'wanf'@'192.168.179.10' |
+-------------------------------------------------------------------+
3 rows in set (0.00 sec)
取消授权revoke
//语法:REVOKE priv_type,... ON db_name.table_name FROM 'username'@'host';

取消用户wanf在主机192.168.179.10上可以访问test数据的授权

mysql> show grants for 'wanf'@'192.168.179.10';
+-------------------------------------------------------------------+
| Grants for wanf@192.168.179.10                                    |
+-------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'wanf'@'192.168.179.10'                     |
| GRANT ALL PRIVILEGES ON `test`.* TO 'wanf'@'192.168.179.10'       |
| GRANT ALL PRIVILEGES ON `test`.`class` TO 'wanf'@'192.168.179.10' |
+-------------------------------------------------------------------+
3 rows in set (0.00 sec)

//取消授权
mysql> revoke all on test.* from 'wanf'@'192.168.179.10';
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

//再次查看授权信息,确实已经取消该条授权了
mysql> show grants for 'wanf'@'192.168.179.10';
+-------------------------------------------------------------------+
| Grants for wanf@192.168.179.10                                    |
+-------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'wanf'@'192.168.179.10'                     |
| GRANT ALL PRIVILEGES ON `test`.`class` TO 'wanf'@'192.168.179.10' |
+-------------------------------------------------------------------+
2 rows in set (0.00 sec)

注意:mysql服务进程启动时会读取mysql库中的所有授权表至内存中:

  • GRANT或REVOKE等执行权限操作会保存于表中,mysql的服务进程会自动重读授权表,并更新至内存中
  • 对于不能够或不能及时重读授权表的命令,可手动让mysql的服务进程重读授权表
mysql> flush privileges;

;