——积累工作中用到的SQL1、增加和删除一列写法: --增加一列 alter table 表名 add 列名 类型; --删除一列 alter table 表名 drop column 列名 ;例如: --增加一列 alter table TB_TEMP add COL_ID VARCHAR2(40); --删除一列...
分类:
数据库 时间:
2014-06-05 10:17:14
阅读次数:
340
1、为已存在表创建分区ALTER TABLE `tb_xxx` PARTITION BY LIST
COLUMNS(col_id)(PARTITION p0 VALUES IN (1),PARTITION p1 VALUES IN (4),PARTITION
p2 VALUES IN (5));分区...
分类:
其他好文 时间:
2014-06-03 09:17:37
阅读次数:
246
select * from all_tab_comments-- 查询所有用户的表,视图等select
* from user_tab_comments -- 查询本用户的表,视图等select * from
all_col_comments--查询所有用户的表的列名和注释.select * fro...
分类:
数据库 时间:
2014-05-26 22:57:50
阅读次数:
363
今天在应用中设置了一个表格,table是100%展开。在css中设置了如下代码:
为了防止连续Ascii字符引起的宽度撑开的问题.table { table-layout: fixed;} .col-title { width:
190px;}但在实际应用导致了其他问题,问题是这样的表格的首行是.....
分类:
其他好文 时间:
2014-05-26 12:22:42
阅读次数:
217
select T.COLUMN_NAME,t.data_type ,c.comments from
ALL_TAB_COLUMNS T ,user_col_comments c where 1=1 and c.table_name = t.table_name
and c.c...
分类:
数据库 时间:
2014-05-24 07:57:41
阅读次数:
266
http://www.catalogueoflife.org/col/browse/classification这是一个国外的生物信息网站今天的代码可以抓取指定分类的信息(id,学名)没有把多线程写进去,略失败...运用:webclient,regex,io项目在>>>开源中国
1 using Sy...
分类:
其他好文 时间:
2014-05-23 22:08:34
阅读次数:
332
//编写一个程序,让用户可以一次性输入任意多行文本
/*
* OutPutTest.cpp
*
* Created on: 2014年5月19日
* Author: John
*/
#include
#include
#include
#define COL_WIDTH 80
using namespace std;
int main(){
ofstrea...
分类:
编程语言 时间:
2014-05-22 10:42:34
阅读次数:
350
一次AC
二维树状数组,有模版很好办
注意二维树状数组这个下标是[1][1]的
#include
#include
#include
#include
#include
#include
using namespace std;
const int Max = 1030;
int row, col, ar[Max][Max];
// 二维的其实下标为[1][1],这个要记得。
...
分类:
其他好文 时间:
2014-05-21 16:23:34
阅读次数:
271
1 ALTER TABLE table_name CHANGE COLUMN old_col_name
new_col_name datatype; #改变table的列名以及列的类型
分类:
数据库 时间:
2014-05-19 07:58:45
阅读次数:
378
PHP 验证码(补充)1、改变验证码背景颜色:imagefill(图片,填充的宽,填充的高,颜色)
$back = imagecolorallocate($img,194,219,255);
imagefill($img,0,0,$back);2、字体颜色随机改变:rand(0,255) $col....
分类:
其他好文 时间:
2014-05-15 01:45:03
阅读次数:
322