create user 用户名 identified by '密码';
例:create user kirito identified by '123456';
数据库授权
grant 权限 on 数据库.* to 用户名@登录主机 identified by ‘密码’;
例:grant all privileges on teacher.* to kirito@'%' identified by ‘123456’;
查看用户权限
show grants for '用户名';
例:show grants for 'kirito';
修改表结构
修改字段类型
alter table 表格名称 modify column 字段名称 字段类型;
例:alter table teacher modify column tel varchar(50);
表格重命名
alter table 表格原名称 rename to 表格新名称;
例:alter table teacher rename to tr;
插入实例
insert into 表格名称(字段列表) value(字段值);
例:insert into tr(tno,tname,sex,birthday,dno,pno,home,zipcode,tel) VALUE('20170101','张小小','男','20191001','信息院',888,'湖南大学','513648','15975325845');
查看或修改实例
查看表格中的全部实例
select * from 表格名称;
例:select * from tr;
查看表格中的特定实例
select 字段名称 from 表格名称 where 条件;
例:select tname from tr where sex='男';
修改实例
update 表格名 set 字段名称=’值’ where 条件;
例:update tr set dno = '物理院' where dno is null;
删除实例;
delete from 表格名称 where 条件;
例:delete from tr where dno = '物理院';