随笔分类 -  mysql

摘要:CREATE TABLE `admin` ( `id` int(10) NOT NULL AUTO_INCREMENT , `username` varchar(50) NOT NULL , `password` varchar(50) NOT NULL , `table_name` varchar(50) NOT NULL , PRIMARY KEY (`id`), UNIQUE KE... 阅读全文
posted @ 2016-06-17 11:55 wong。 阅读(3780) 评论(0) 推荐(0)
摘要:首先登录MySQL格式:mysql> set password for 用户名@localhost = password('新密码'); 例子:mysql> set password for root@localhost = password('123'); 阅读全文
posted @ 2016-04-15 17:32 wong。 阅读(160) 评论(0) 推荐(0)