《MySQL常用命令1 / 29 MySQL 常用命令汇总 http://www.database8.com 2011-3-1 2 / 29 Mysql 常用命令 show databases; 显示数据库 create database name; 创建数据库 use databasename; 选择数据库 drop database name 直接删除数据库,不提醒 show tables; 显示表 describe tablename; 显示具体的表结构 select 中加上 disti
1、加字段:
alter table 表名 ADD 字段名 类型;
eg:
alter table sys_cwzd ADD SCCLLJ VARCHAR2(50);
2、加备注:
comment on column 表名.字段名 is '备注名';
eg:
comment on column sys_cwzd.SCCLLJ is '上传材料路径';
内容扩展:
添加新字段:
alter table bulletin add citycode varchar(6) not n