create database client;
use client;
create table test (id int not null,name char(10) not null,phone varchar(18) not null unique key,primary key (id));
insert into test (id,name,phone) values (1,'zhangsan','58225672');
insert into test (id,name,phone) values (2,'lisi','58225673');
insert into test (id,name,phone) values (3,'wangwu','58225674');
select * from test;
use client;
create table if not exists class (
id int(2) zerofill primary key auto_increment,
student_name varchar(10) not null,
age int not null unique key,
hobby varchar(50));
if not exists | 表示检测要创建的表是否存在,如果不存在就创建表 |
---|---|
int(4) zerofill | 表示若数值不满4位数,则前面用“0”填充 |
auto_increment | 表示此字段为自增长字段,即每条记录自动递增1,默认从1开始递增;自增长字段数据不可以重复;自增长字段必须是主键;如添加的记录数据没有指定此字段的值且添加失败也会自动递增一次 |
unique key | 表示此字段唯一键约束,此字段数据不可以重复;一张表中只能有一个主键, 但是一张表中可以有多个唯一键 |
not null | 表示此字段不允许为NULL |
方法一
create table 新表名 like 复制的表名; #复制格式,能够复制表的格式到新表,但是没有内容
insert into 新表名 select * from 复制的表名; #复制原表内容到新表
例:create table test2 like test;
show tables;
select * from test;
select * from test2;
insert into test2 select * from test;
select * from test2;
方法二
create table 新表名 (select * from 复制的表名)
例:create table test3 (select * from test);
desc test;
desc test3;
select * from test3;
这种方法会将oldtable中所有的内容都拷贝过来不过这种方法的一个最不好的地方就是新表中没有了旧表的primary key、Extra(auto_increment)等属性。
方法一:
delete from 表名;
#delete清空表后,返回的结果内有删除的记录条目;
delete工作时是一行一行的删除记录数据的;
如果表中有自增长字段,使用delete from 删除所有记录后,再次新添加的记录会从原来最大的记录 ID 后面继续自增写入记录
insert into class(student_name,age,hobby) values('zhangsan',22,'running');
delete from class;
insert into class(student_name,age,hobby) values('lisi',24,'running');
select * from class;
方法二:
truncate table 表名;
例:select * from class;
truncate table class;
insert into class(student_name,age) values('zhoujie',24);
select * from class;
#TRUNCATE 清空表后,没有返回被删除的条目;
TRUNCATE 工作时是将表结构按原样重新建立,因此在速度上 TRUNCATE 会比 DELETE 清空表快;
使用 TRUNCATE TABLE 清空表内数据后,ID 会从 1 开始重新记录。
两个删除方法的对比
1、论删除速度而言:
2、就安全性而言:
show tables
命令是看不到创建的临时表的,临时表会在连接退出后被销毁。drop table
语句手动直接删除临时表。CREATE TEMPORARY TABLE 表名 (字段1 数据类型,字段2 数据类型[,...][,PRIMARY KEY (主键名)]);
例:create temporary table test4 (id int not null,name varchar(20) not null,cardid varchar(18) not null unique key,primary key (id));
show tables;
insert into test4 values (1,'haha','12345');
select * from test4;
主键约束 | primary key |
---|---|
外键约束 | foreign key |
非空约束 | not null |
唯一约束 | unique key |
默认值约束 | default |
自增约束 | auto_increment |
例:create table major (mabid int(4),majorname varchar(50));
create table form (id int(4) primary key auto_increment,name varchar(10),age int(4),majorbid int(4));
alter table major add constraint primary key(mabid);
alter table form add constraint foreign key(majorbid) references major (mabid);
例:添加数据记录
insert into major(mabid ,majorname) values (1,'mathematics');
insert into major(mabid ,majorname) values (2,'english');
insert into major(mabid ,majorname) values (3,'medicine');
insert into major(mabid ,majorname) values (4,'law');
insert into form() values (1,'mike',22,2);
insert into form() values (2,'nacy',20,1);
insert into form() values (3,'david',25,4);
alter table major add constraint primary key(mabid);
alter table form add constraint foreign key(majorbid) references major (mabid);
#为主表 major 添加一个主键约束。主键名建议以“PK_”开头 ( 在用命令查看时是不会显示主键名的)
#为从表 form 表添加外键,并将 form 表的 majorbid 字段和 major 表的 mapid 字段建立外键关联。外键名建议以“FK_”开头。 ( 在用命令查看时是可以显示外键名的)
show create table major;
show create table form;
insert into form values(4,‘yami’,24.6);
insert into form values(4,‘yami’,24.8);
delete from major where mabid=4;
delete from form where id=3;
delete from major where mabid=4;
select * from najor;
注:如果要删除外键约束字段
先删除外键约束,再删除外键名
show create table form;
alter table form drop foreign key form_ibfk_1;
create user '用户名'@'来源地址' [identified by [password] '密码'];
用户名:指定将创建的用户名
来源地址:指定新创建的用户可在哪些主机上登录,可使用IP地址、网段、主机名的形式,本地用户可用localhost,允许任意主机登录
可用通配符%
可使用通配符 %
密码:若使用明文密码,直接输入’密码’,插入到数据库时由Mysql自动加密;
若使用加密密码,需要先使用SELECT PASSWORD(‘密码’); 获取密文,再在语句中添加 PASSWORD ‘密文’;
若省略“IDENTIFIED BY”部分,则用户的密码将为空(不建议使用)
例:create user 'xucheng'@'localhost' identified by 'abc123';
select password('abc123');
create user 'zhoujie'@'localhost' identified by password '*6691484EA6B50DDDE1926A220DA01FA9E575C18A';
mysql -u zhoujie -pabc123
创建后的用户保存在 mysql 数据库的 user 表里
use mysql ; #切换到mysql数据库中
select User,authentication_string,Host from user; #不区分大小写
rename user 'wangxin'@'localhost' to 'yangwenyue'@'localhost';
select user,host from user;
drop user 'yangwenyue'@'localhost';
select user,host from user;
set password = password('123');
quit
mysql -u root -p123
set password for 'xucheng'@'localhost' =password('123123');
select password('123123');
select user,host,authentication_string from user;
(1)修改 /etc/my.cnf 配置文件,不使用密码直接登录到 mysql
vim /etc/my.cnf
[mysqld]
skip-grant-tables #添加,使登录mysql不使用授权表
systemctl restart mysqld
mysql #直接登录
(2)使用 update 修改 root 密码,刷新数据库
update mysql.user set authentication_string = password('xc123') where user='root';
flush privileges;
quit
再把 /etc/my.cnf 配置文件里的 skip-grant-tables 删除,并重启 mysql 服务。
mysql -u root -pxc123
grant 语句:专门用来设置数据库用户的访问权限。当指定的用户名不存在时,grant 语句将会创建新的用户;当指定的用户名存在时,grant 语句用于修改用户信息。
grant 提权
grant 权限列表 on 数据库名 .表名 to '用户名'@'来源地址' [identified by '密码'];
#允许用户wangwu在本地查询 CLASS 数据库中所有表的数据记录,但禁止查询其他数据库中的表的记录。
例:
grant select on client.major to 'zhoujie'@'localhost' identified by '123';
quit;
mysql -u zhoujie -p123
show databases;
use client;
show tables;
select * from major;
#允许用户wangwu在本地远程连接 mysql ,并拥有所有权限。
quit;
mysql -u root -pxc123
grant all privileges on *.* to 'zhoujie'@'localhost' ;
flush privileges;
quit
mysql -u zhoujie -p123
create database SCHOOL;
show grants for 用户名@来源地址;
例:show grants for 'zhoujie'@'localhost';
revoke 权限列表 on 数据库名.表名 from 用户名@来源地址;
例:quit;
mysql -u root -pxc123
revoke all on *.* from 'zhoujie'@'localhost';
revoke select on client.major from 'zhoujie'@'localhost';
show grants for 'zhoujie'@'localhost';
#USAGE权限只能用于数据库登陆,不能执行任何操作;USAGE权限不能被回收,即 REVOKE 不能删除用户。
flush privileges;