标签:collate 不为 table comm har exists 常用 creat tin
建库查看有哪些数据库
show DATABASES
选择使用那个数据库
use python
查看有哪些数据库表
show TABLES
删除数据库
drop TABLE demo;
创建数据库用户
create USER ‘hhq‘@‘%‘ IDENTIFIED by "123456";
%可以指定ip,只有指定ip的人可以连接此数据库
更新表字段的值
update USER set PASSWORD=PASSWORD(‘11111‘) where user=‘hhq1‘
给用户赋权限
GRANT all privileges on . to test@‘%‘ identified by ‘123456‘
flush privileges;
use python;
SELECT DATABASE();查看当前的库
查看当前连接用户
SELECT user();
标签:collate 不为 table comm har exists 常用 creat tin
原文地址:http://blog.51cto.com/13496943/2139267