摘要:
1. 常用命令2. 创建表create table test( test_id int, test_price decimal);或者 create table test2 as select * from test修改表alter table test2 //添加add( test_a varchar(255) defaule 'aaa', test_b varchar(255),);alter table test2 //修改modify test_a varchar(255) default 'bbb';alter table test2 drop tes 阅读全文
摘要:
http://www.linuxidc.com/Linux/2012-06/62458.htmmysqladmin -u root -p versionmysql -u root -p /ect/init.d/mysql.server startnetstat -tap | grep mysqlhttp://www.cnblogs.com/wuhou/archive/2008/09/28/1301071.htmlUbuntu安装配置Mysql三种安装方式: 1. 从网上安装 sudo apt-get install mysql-server。装完已经自动配置好环境变量,可以直接使用mysql. 阅读全文