摘要:
这些都是我在“重新”学习mysql数据库时遇到的问题,不知各位有没有遇到过,以后会不定时更新1.大小写的问题Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->create table book(ISBN varchar(10) not null,name varchar(30) not null,price DOUBLE not null,author varchar(30) not null,publisherID varchar(30) n 阅读全文
摘要:
连接:mysql -h主机地址 -u用户名 -p用户密码 (注:u与root可以不用加空格,其它也一样)断开:exit (回车)创建授权:grant select on 数据库.* to 用户名@登录主机 identified by \"密码\"修改密码:mysqladmin -u用户名 -p旧密码 password 新密码删除授权: revoke select,insert,update,delete om *.* from test2@localhost;显示数据库:show databases;显示数据表:show tables;显示表结构:describe 表名;创 阅读全文