1、登陆mysql
mysql -p -u user
2、打开数据库
mysql> use mydb;
3、列出全部数据表
mysql> show tables;
4、显示表结构
mysql> describe mytable;
5、显示表create语句
mysql> show create table mytable;
6、查询表记录
mysql> select * from mytable where id > 100 order by id desc\G
在terminal里,\G
可以获得更好的排版,临时debug更方便。
7、插入一条数据记录
mysql> insert into mytable (`col_name1`, `col_name2`) values ('value1', 'value2');
8、table添加一列
mysql> alter table mytable add newcolumn tinyint default 0;
9、table修改一列
mysql> alter table mytable modify column col_name tinyint default 0;
10、table列改名
mysql> alter table mytable rename column old_column_name to new_column_name;
11、把表中一列复制给另一列
mysql> update mytable set newcol = oldcol;