create database if not exists 数据库名 charset=指定编码Copy after login
use 数据库名Copy after login
create table if not exists 表名( 字段名 类型名, id int, birth date );Copy after login
rrree显示表(创建表代码) show create table 表名字; 显示表结构 desc 表名; 显示数据库和表 show 数据库名/表名Copy after login
<br/>
删除数据库与表 drop 数据库名/表名
添加列 alter table 表名 add(列名 列类型,列名 列类型); alter table tab_day1 add(age int,zwjs text); 删除列 alter table 表名 drop 列名; alter table tab_day1 drop age;
(这里区别change与modify,change为改变的意思,程度自然比modify大) 修改列名 alter table tab_day1 change 旧列名 新列名 新列类型; alter table tab_day1 change money salary decimal(10,2); 修改列类型 alter table tab_day1 modify 列名 列新类型; alter table tab_day1 modify height int;
The above is the detailed content of SQL commands commonly used in database operations. For more information, please follow other related articles on the PHP Chinese website!