use mysql;
create table if not exists info (
id int(4) zerofill primary key auto_increment, #指定主键的第二种方式
name varchar(10) not null,
cardid int(18) not null unique key,
hobby varchar (50)) ;
#if not exists: 表示检测要创建的表是否已存在,如果不存在就继续创建
#int(4) zerofill: 表示若数值不满4位数,则前面用“O"填充,例0001
#auto_ increment: 表示此字段为自增长字段,即每条记录自动递增1,默认从1开始递增;自增长字段数据不可以重复:自增长字段必须是主键;如添加的记录数据没有指定此字段的值且添加失败也会自动递增一次
#unique key:表示此字段唯一键约束, 此字段数据不可以重复:一张表中只能有一个主键,但是一张表中可以有多个唯一键
#not null:表示此字段不允许为NULL
方法一
create table qq like jy2; #通过LIKE方法,复制bzx1表结构生成qq表
insert into qq select * from jy2;
方法二
create table ww (select * from bzx1); #获取数据表的表结构、索引等信息
SELECT * from ww;
直接将表bzx1 格式以及内容一起复制到ww表
delete from qq;
truncate table ww;
临时表创建成功之后,使用SHOWTABLES命令是看不到创建的临时表的,临时表会在连接退出后被销毁。如果在退出连接之前,也可以可执行增删改查等操作,比如使用DROPTABLE语句手动直接删除临时表。
create temporary table 表名(字段1 数据类型,字段2数据类型... primary key (主键名));
定义:外键的定义:如果同一个属性字段x在表一中是主键,而在表二中不是主键,则字段x称为表二的外键
理解
注意:与外键关联的主表的字段必须设置为主键。要求从表不能是临时表,主从表的字段具备相同的数据类型、字符长度和约束。
create table zhu (hobid int (4) , hobname varchar (50)) ; #创建主表
create table cong (id int(4) primary key auto_increment, name varchar (10),age int(3),hobid int(4)); #创建从表
alter table zhu add constraint PK_hobid primary key (hobid) ;
alter table cong add constraint FK_hob foreign key (hobid) references zhu (hobid) ;
desc cong;
insert into zhu values(1, 'runing');
insert into cong values (1, 'zhangsan');
drop tables cong;
drop tables zhu;
create user '用户名'@'来源地址’[identified by [password] ' 密码'];
'用户名': 指定将创建的用户名
'来源地址':指定新创建的用户可在哪些主机上登录,可使用IP地址、网段、主机名的形式,本地用户可用localhost, 允许任意主机登录可用通配%
'密码’: 若使用明文密码, 直接输入'密码',插入到数据库时由Mysql自动加密:
若使用加密密码,需要先使用select password('密码);获取密文,再在语句中添加password '密文';
若省略“identified by" 部分,则用户的密码将为空(不建议使用)
create user 'user1'@'localhost' identified by '123456';
select password('abc123');
create user 'user2'@'localhost' identified by password' * 6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9';
#创建后的用户保存在mysql 数据库的user 表里
USE mysql;
select User,authentication string,Host from user;
rename use 'user1'@'localhost' to 'zhangsan'@'%';
set password = password('abc123') ;
set password for 'user2'@'localhost' = password('123456') ;
vim /etc/my.cnf
[mysqld]
skip-grant-tables #添加,使登录mysql不使用授权表
systemctl restart mysqld
mysql #直接登录![在这里插入图片描述](https://img-blog.csdnimg.cn/20210623150234205.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl81NTYwOTk0NA==,size_16,color_FFFFFF,t_70)
update mysql.user set authentication_string = password('abc123') where user=' root' ;
flush privileges;
quit
mysql -u root -p123456
注意:最后再把/etc/my. cnf配置文件里的skip-grant-tables 删除,并重启mysql 服务。
GRANT语句:专门用来设置数据库用户的访问权限。当指定的用户名不存在时,GRANT语 句将会创建新的用户:当指定的用户名存在时,GRANT语句用于修改用户信息
grant权限列表 on 数据库名.表名 to '用户名'@'来源地址’[identified by ' 密码'];
允许用户zhangsan在本地查询jinlei数据库中所有表的数据记录,但禁止查询其他数据库中的表的记录
grant select on jinlei.* to ' zhangsan'@'localhost' identiified by '123456' ;
允许用户zhangsan在所有终端远程连接mysql,并拥有所有权限
grant all on *.* to 'zhangsan'@'%' identified by '123456';
flush privileges;
quit
mysql -u zhangsan -p 123456
show grants for 用户名@来源地址;
show grants for 'zhangsan'@'%';
revoke 权限列表 on 数据库名.表名 from 用户名@来源地址;
revoke all on *.* from 'zhangsan'@'%';
#usage权限只能用于数据库登陆,不能执行任何操作; usage权限 不能被回收,即revoke不能删除用户