安装
sudo apt-get install mysql-server
sudo apt-get install mysql-client
sudo apt-get install libmysqlclient-dev
查看是否安装成功 sudo netstat -tap |grep mysql
登陆 mysql -u root -p
查看数据库 show databases
查看数据库的表单 show tables
终端启动 /etc/init.d/mysql start
选择一个数据库进行操作 use database_name
创建数据库 create database database_name
删除数据库 drop database database_name
创建一个表 create table test(uid bigint(20) not null primary key, uname varchar(20) not null);
删除一个表 drop table test
向表中插入数据 insert into 表名 values('1','2')
更新表 update 表名 set sex='m' where name='zcd'
查询表 select *from table_name
删除表中记录 delete from table_name where name='zcd'
查看表结构 desc 表名
修改表结构
增加列
①alter table 表名 add 列名 列类型 列参数【加的列在表的最后面】
例:alter table test add username char(20) not null default '';
②alter table 表名 add 列名 列类型 列参数 after 某列【把新列加在某列后面】
例:alter table test add gender char(1) not null default '' after username;
③alter table 表名 add 列名 列类型 列参数 first【把新列加在最前面】
例:alter table test add pid int not null default 0 first;
删除列
①alter table 表名 drop 列名
例:alter table test drop pid;
修改列
①alter table 表名 modify 列名 新类型 新参数【修改列类型】
例:alter table test modify gender char(4) not null default '';
②alter table 表名 change 旧列名 新列名 新类型 新参数【修改列名和列类型】
例:alter table test change pid uid int unsigned not null default 0;
修改表的字符集,比如表test原来是latin1,改为utf8
alter table test default character set utf8;
修改表中某列的字符集
alter table test change uname uname varchar(100) character set utf8 not null;
参考路径:
http://www.cnblogs.com/qintangtao/archive/2012/11/17/2775209.html