d、 增加新用户: grant select on 数据库.* to 用户名@登录主机 identified by "密码"
grant select,insert,update,delete on *.* to test1@"%" Identified by "abc"; //增加一个用户test1密码为abc,让他可以在任何主机上登录,并对所有数据库有查询、插入、修改、删除的权限 grant select,insert,update,delete on mydb.* to test2@localhost identified by "abc"; //只能本地登录
e、 显示数据库列表: show databases; 显示库中的数据表: show tables; 打开库: use database_name; 显示数据表的结构: describe 表名;
g、 删库: drop database 库名; 删表: drop table 表名; 将表中记录清空: delete from 表名;
h、 显示表中的记录: select * from 表名;
i、 实例
create database bysj; use school; create table info ( id int(3) auto_increment not null primary key, name char(10) not null, password varchar(50) default '12345' );