mysql表操作
mysql操作项目整理,并增加部分mysql官网内容,稍作完善:
https://dev.mysql.com/doc
1. 改字段:alter table tableName modify column columnName VARCHAR(20);
2. 增加字段时确定位置:alter table tableName Add column columnName VARCHAR(20) AFTER oldColumnName(即在哪个字段后面);
3. 改字段,加注释:alter table tableName modify columnName datetime DEFAULT NULL COMMENT '注释内容';
4. 日期型:alter table tableName modify column columnName TIMESTAMP DEFAULT CURRENT_TIMESTAMP;
alter table tableName modify column columnName TIMESTAMP DEFAULT CURRENT_TIMESTAMP;
5. 新增字段:alter table tableName Add column columnName datetime DEFAULT NULL AFTER oldColumnName(即在哪个字段后面);
6. 删除字段:alter table tableName drop column columnName;
--------------http://database.51cto.com/art/201011/234259.htm
7. -----------mysql建表加注释:
8. mysql日期函数:
http://www.jb51.net/article/23966.htm
oracle操作:
-------添加数据库表注释
comment on table TB_COMMUNITY
is '社区结构表';
-- 添加列注释
comment on column TB_COMMUNITY.COMMUNITY_CODE
is '社区或街道或小区编号';