点击跳转5.7.30版本安装
mysql -h数据库地址 -u账号 -p密码;
exit
create database if not exists 数据库名 character set 字符集;
查询所有数据库的名称
show databases;
查询某个数据库字符集,查询某个数据库的创建语句;
show create database 数据库名称;
修改数据库字符集合
alter database 数据库名称 character set 字符集;
drop database if exists 数据库名;
查询当前正在使用的数据库名称
select database();
使用
use 数据库名;
1.语法
create table 表名(
列名1 数据类型1,
列名2 数据类型2,
列名3 数据类型3,
列名4 数据类型4,
... ...
列名n 数据类型n
);/*最后一列不需要加,*/
复制另一个表
create table 创建的表名 like 要复制的表名;
2.数据类型
点击跳转数据类型表
use数据库后:
show tables;
desc 表名;
1.修改表名 alter table 表名 rename to 新的表名;
2.修改表的字符集 alter table 表名 character set 字符集;
3.添加一列 alter table 表名 add 列名 数据类型;
4.修改列名称 alter table 表名 change 列名 新列名 新数据类型;
5.删除列 alter table 表名 drop 列名;
drop table if exists 表名;
1.语法
insert into 表名(列名1,列名2,...,列名n) values(值1,值2,...,值n);
2.注意
列名和值一一对应;
如果表名后不给定列名则默认给出所有的值;
除了数字类型,其他类型值需要用引号;
1.语法
update 表名 set 列名1=值1,列名2=值2,...,where 条件;
2.注意
如果不加where会修改所有数据;
1.语法
delete from 表名 条件[where条件]
2.注意
不写where会删除表中所有数据
语法
select
字段列表用逗号分隔
from
表名
where
条件列表
group by
分组字段
having
分组之后的条件
order by
排序
limit
分页限定
;
多个字段的查询
select 字段列表用逗号分隔 from表名;
去除重复
select distinct 字段列表用逗号分隔 from表名;
计算列
select 字段列表用逗号分隔,某个字段+-*/某个字段 from表名;
select 字段列表用逗号分隔,某个字段+-*/ifnull(某个字段,替换为) from表名;
起别名
select 字段列表用逗号分隔,某个字段+-*/某个字段 as 别名 from表名;
1.where子句后跟条件
2.运算符
<,>,<=,>=,=,<>
between and
in 范围
like 像。。。东西 (模糊查询)
占位符
_:单个任意字符;
%:任意多个字符;
is null
&&,||,!
*** where后面语法就字面意思就ok