数据库操作
千堆雪惹尘埃
这个作者很懒,什么都没留下…
展开
-
MySQL常用的命令大全
1、MySQL常用命令 create database name; 创建数据库 use databasename; 选择数据库 drop database name 直接删除数据库,不提醒 show tables; 显示表 describe tablename; 表的详细描述 select * from tablename;转载 2017-02-15 16:17:34 · 247 阅读 · 0 评论 -
mysql root 远程访问
授权:root 使用123456 从任何主机连接到mysql服务器 mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION; mysql> flush rivileges;你重启一下数据库即可原创 2017-06-05 17:55:41 · 251 阅读 · 0 评论 -
linux下 修改mysql数据库密码
1、先停止数据库服务并检查服务状态# /etc/init.d/mysqld stop2、使用--skip-grant-tables选项启动服务# mysqd_safe --skip-grant-tables &3、使用skip tables 启动mysql可以让你不用root密码就可以连接到数据库4、这时你也许需要切换到另一个终端# mysql -u root5...原创 2019-03-21 15:50:31 · 1192 阅读 · 0 评论