MySQL 加入列,改动列,删除列ALTER TABLE:加入,改动,删除表的列,约束等表的定义。查看列:desc 表名;改动表名:alter table t_book rename to bbb; 加入列:alter table 表名 add column 列名 varchar(30); 删除列:...
分类:
数据库 时间:
2014-08-19 14:22:34
阅读次数:
241
CSS样式命名整理 页面结构 容器: container/wrap 整体宽度:wrapper 页头:header 内容:content 页面主体:main 页尾:footer 导航:nav 侧栏:sidebar 栏目:column 中间内容:center 导航 导航:nav 导航:mainbav/g...
分类:
Web程序 时间:
2014-08-18 18:04:42
阅读次数:
338
此错误并不是NPOI的问题,而是Excel的问题,原因是Excel的最大列255,所以导出的列超过255时就会出现此问题但Excel2007以上并没有此问题,因为2007以上的列已经增加到16384列啦,但2003和2007的代码是不一样的NPOI操作2007(NPOI 2.0):http://to...
分类:
其他好文 时间:
2014-08-18 12:12:04
阅读次数:
448
1.添加注释的sqlcomment on table tableName is '表注释';comment on column tableName.columnName is '字段注释说明';comment on table t_cif_ehrlog is 'ehr同步日志表';comment o...
分类:
数据库 时间:
2014-08-18 12:00:34
阅读次数:
215
创建表语法:如下create table table_name (column_name column_type(parametes)options,…);注意:⑴ SQL语句对大小写不敏感⑵ 通常忽略空白—应该使用空白使SQL命令具有更好的可读性。⑶ 表名和字段不能和SQL的保留字相同一下示例师范...
分类:
数据库 时间:
2014-08-17 18:15:52
阅读次数:
272
CSS样式命名整理(转)CSS命名规范CSS样式命名整理页面结构容器: container/wrap整体宽度:wrapper页头:header内容:content页面主体:main页尾:footer导航:nav侧栏:sidebar栏目:column中间内容:center导航导航:nav导航:main...
分类:
Web程序 时间:
2014-08-17 14:15:02
阅读次数:
289
一、From阶段针对连接说明:1、笛卡尔积2、on筛选器插播:unknown=not unknuwn 缺失的值;筛选器(on where having)把unknown当做FALSE处理,排除在筛选结果之外。如果比较两个null,结果是不相等的,falsecheck约束中当做true,例如要求某列大...
分类:
数据库 时间:
2014-08-17 11:41:02
阅读次数:
233
Cassandra 的数据存储结构 Cassandra 的数据模型是基于列族(Column Family)的四维或五维模型。它借鉴了 Amazon 的 Dynamo 和 Google‘s BigTable 的数据结构和功能特点,采用 Memtable 和 SSTable 的方式进行存储...
分类:
其他好文 时间:
2014-08-17 01:14:11
阅读次数:
363
一般想要批量下载rtf模板我们都是用fndload来实现或者 perl download.pl来实现,今天看到一个比较有趣的方法
Hi,
Blob column 'template file data' below is just what you want, open it in PLSQL-DEVELOPER and save it as a rtf file or...
分类:
其他好文 时间:
2014-08-16 23:53:31
阅读次数:
540
组函数:对一组数据进行加工,每组数据返回一个值常用的组函数:count() avg() max() min() sum() count()函数1. count(*) :返回总共的行数,不去除NULL值2. count(column):返回非NULL行的数量SQL> select count(*) ....
分类:
数据库 时间:
2014-08-16 18:19:20
阅读次数:
294