MySQL是一款免费开源的关系型数据库管理系统,关系型数据库将数据保存在不同的表中,有效的提高了灵活性
关系型数据库:用于存储字符、字符串、数值以及布尔值等
MySQL
SQL_Server
access
Oracle
DB2
sybase
非关系型数据库:用于存储图片、视频、语言等
MongoDB
Redis
(内存/缓存数据库) Memcache
Redis和Memcache对比
相同点:存储高热数据(在内存中高速运行)
不同点:Redis
可以做持久化保存,可以存储对象
项目架构,不是只有服务,还有一些通用的管理系统
比如BOSS
CRM
OA
它的处理比直接作用在数据库中操作要简单一些
目前主流的运行方式是关系型数据库+非关系型数据库集成为一个完整的架构
SQL
+NoSQL
保存数据并用分压
E-R
关系模型三要素
实体
可以是事物本身
关系
实体集之间对应的关系
属性
一个实体可以有多个属性,描述实体的特征
主键
唯一且非空
唯一键
可以为空(空值只能出现一次)
主键包含唯一键的部分属性
存储海量数据,给与大数据进行分析,筛选出有价值的部分
redis
数据保存在内存中,也会定期将数据写入磁盘
Not Only SQL 不限于SQL
不需要遵循关系数据库模型
也不使用SQL作为查询语言
►官方下载地址
►国内源下载地址
MySQL
只用于连接MySQL
服务器MySQL-client
顾名思义(客户端),用于控制MySQL
服务器MySQL-devel
用于编译客户端MySQL-shared
动态装载的共享库(libmysqlclient.so*)
MySQL-bench
性能测试工具变量 | 介绍 |
---|---|
int | 整型 |
float | 单精度浮点 4字节32位 |
double | 双精度浮点 8字节64位 |
char | 固定长度的字符类型 |
varchar | 可变长度的字符类型 |
text | 文本 |
image | 图片 |
decimal (3,2) | 3个有效长度数字,小数点后面有2位 |
mysql -u 用户名 -p
use 数据库名;
show databases;
show tables;
show character set;
desc 数据表名;
create database 数据库名;
create datebase 表名 default characret set utf8 collate utf8_general_ci
create table 数据表名 (字段名 字段值(number));
举例:
create table info (uid int(50),name varchar(100),sex varchar(2),status varchar(100));
insert into 数据表名 (字段名1,字段名2...) values (字段值1,字段值2...)
举例:
insert into info (uid,name,sex,status) values (1,'Frisk','未知','雪镇');
select * from 表名
select * from 表名\g
select * from 表名 limit 2;
select * from 表名 limit 2,1;
select * from 表名1,表名2
select * from 表名 where 字段名 in (值);
举例:
select * from info where kill in (100);
alter table 旧表名 rename 新表名
alter table 表名 add 字段名 varchar(100) not null default '未填写';
alter table 表名 change 旧列名 新列名 字段();
drop database 数据库名;
drop table 数据表名;
alter table 表名 drop 字段;
alter table 表名 drop primary key;
一条一条删除速度较慢
delete from 表名;
delete from 表名 where 字段名=字段值;
整体删除速度较快
truncate 表名;
update 表名 set 字段名=字段值
举例:
update info set sex='男'
update 表名 set 字段名=字段值 where 字段名=字段值;
举例:
update info set sex='女' where name='Frisk';
alter table 表名 modify 字段名 数据类型();
举例:
alter table info modify uid int(10) not null default 'tan90°';
alter table 表名 modify 字段名 数据类型() frist;
select 字段名 as 新字段名 from 表名;
举例:
select name as 名字 from info;
select * from 表名 where 字段名>字段值;
举例:
select * from info where uid>0;
关键词AND | OR
select * from 表名 where 字段名>字段值 and (字段名<字段值);
select * from 表名 order by 字段名 asc;
select * from 表名 order by 字段名 desc;
update 表名 set 字段名=加密方式('');
常用加密方式
insert into user (password) values (md5('123456'));
encode
和decode
有些特殊
update user set pwd=decode('123456','123456');
create table 表名 (select * from 克隆的表名)
create table 表名 like 克隆的表名
insert into 表名 select * from 表名
临时表在退出后会销毁,show tables
无法查看,一般用于测试
create temporary table 表名(字段1 数据类型...);
create user '用户名'@'来源地址' IDENTIFIED BY '密码';
select password('值');
select password('123456');
create user 'Toby'@'localhost' IDENTIFIED BY '*6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9';
rename user '用户名'@'来源地址' to '新用户名'@'新来源地址';
来源地址
可指IP、网段192.168.1.%
、域名
drop user '用户名'@'来源地址';
set password = password('值');
set password for '用户名'@'来源地址' = password('值');
进入MySQL
配置文件
vim /etc/my.conf
在[mysqld]
语句下增加skip-grant-tables
[mysqld]
skip-grant-tables
#登陆时无需密码
systemctl restart mysqld
update mysql.user set authentication_string = password('') where user='root'
flush privileges;
grant 权限列表 on 数据库名.表名 to '用户名'@'location' []
show grant for '用户名'@'来源地址'
revoke all on *.* from 用户名@地址;
select distinct 字段 from 表名
create table user(
-> id int(10) not null,
-> name varchar(16)
-> );
向表中添加数据
insert into user (name) values('Bob');
拒绝添加
(1364, "Field 'id' doesn't have a default value")
所有语法都支持,但是外建上没有用处
create table user(
-> id int(10),
-> name varchar(16) not null,
-> sex varchar(2) unique
-> );
除了非空约束以外全部支持
create table user(
-> id int(10),
-> name varchar(16) not null,
-> sex varchar(2),
-> unique(sex)
-> );
同时约束多个目标
create table user(
-> id int(10),
-> name varchar(16) not null,
-> sex varchar(2),
-> unique(name,sex)
-> );
create table user(
-> id int(10) primary key,
-> name varchar(16)
-> );
create table user(
-> id int(10),
-> name varchar(16) not null,
-> constraint password primary key (id)
-> );
create table user (
-> id int(10),
-> name varchar(16) not null
-> );
create table password(
-> id int(10) primary key auto_increment,
-> name varchar(16),
-> foreign key(id) references user(uid)
-> );