
MySQL
文章平均质量分 83
songuooo
Make easy things easy & hard things possible.
展开
-
Learning MySQL 2 - 常用命令
1 登录mysql -u songguo -p[password] mysqlmysql -u songguo -p2 创建&删除 用户create user ‘songguo’@'localhsot' identified by 'admin'drop user ‘songguo’@'localhsot'3 更改数据库use mysqluse my原创 2012-11-15 20:27:32 · 436 阅读 · 0 评论 -
CentOS 6安装MySQL及phpMyAdmin
1. CentOS 6安装MySQLThe recommended way to install MySQL on a Linux system is via RPM. MySQL-server-5.5.28-1.el6.i686.rpm - The MySQL database server, which manages databases and tables, controls原创 2012-10-22 18:34:20 · 4419 阅读 · 0 评论 -
Learning MySQL 1 - create database & tables using specified charset
1 Create Databasescreate database mydb DEFAULT CHARSET=utf8;2 Create Tablescreate table ids ( id int auto_increment, name varchar(10) not null, num varchar(10), descript原创 2012-11-09 21:39:21 · 1206 阅读 · 0 评论