摘要: 首先进入mysql:mysql -u root -p 1.建库: create database 库名称; 例如:create database mydata;(创建一个名为“mydata”的库); 2.建表: use 要存表的库名称; create table 表名称(字段设定列表); 例如:us 阅读全文
posted @ 2016-08-03 15:36 Planning 阅读(200) 评论(0) 推荐(0)
摘要: 1.启动MySQL服务:# service mysqld start 2.为MySQL设置root用户密码:# mysql -u root mysql>set password for root@localhost=password('此处是想要设置的密码'); 3.退出mysql:exit 4.用 阅读全文
posted @ 2016-08-03 14:54 Planning 阅读(133) 评论(0) 推荐(0)
摘要: centos6.5的安装过程 阅读全文
posted @ 2016-08-03 13:38 Planning 阅读(302) 评论(0) 推荐(0)