转载:http://www.cnblogs.com/newwind521/archive/2010/11/25/1887203.htmlsql 行专列 列转行
普通行列转换/*标题:普通行列转换(version 2.0)作者:爱新觉罗.毓华时间:2008-03-09地点:广东深圳说明:普通行列转换(...
分类:
数据库 时间:
2014-05-09 13:37:56
阅读次数:
444
SELECT * FROM ( SELECT ROW_NUMBER() OVER(ORDER BY
ca.PraiseNum desc) as RowID ,ca.[ArticleId] ...
分类:
其他好文 时间:
2014-05-09 13:17:14
阅读次数:
409
1、build.xml中新建targer如下: 2、ant
debug环境配置如下,运行3、运行结果logApache Ant version 1.7.1 compiled on June 27 2008Setting
r...
分类:
其他好文 时间:
2014-05-09 09:11:47
阅读次数:
472
问题一: java.lang.UnsupportedClassVersionError:
org/apache/catalina/startup/Bootstrap : (Unsupported major.minor version 55.0)
原因是因为jdk版本太低了,tomcat8支持,更换...
分类:
系统相关 时间:
2014-05-09 08:23:02
阅读次数:
543
Twemproxy is a proxy server that allows you to reduce the number of open connections
to yourMemcached or Redis server.
What is Twemproxy useful for? It can
reduce the number of connections t...
分类:
其他好文 时间:
2014-05-09 06:30:25
阅读次数:
258
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1711题目意思:给出一条有n个数的序列a[1],a[2],......,a[n],和一条有m
个数的序列b[1],b[2],......,b[m],求出b[1],b[2],...,b[m]在序列a中完全匹...
分类:
其他好文 时间:
2014-05-09 05:53:04
阅读次数:
268
1. Write a procedure count-list to count the
number of elements in a list1 (defun count-list (numbers)2 (if (null numbers) 03
(+ 1 (co...
分类:
其他好文 时间:
2014-05-09 05:41:41
阅读次数:
307
1 表和列的命名规则
a. 必须以字母开头
b. 长度不能超过30个字符
c. 不能使用Oracle的保留字(关键字)
d. 只能使用如下字符A-Z,a-z,0-9,$,#
2 创建表
语法:create table 表名 (列名 数据类型,列名 数据类型,...)
SQL> create table Student (StuNo number(10),Gender ch...
分类:
其他好文 时间:
2014-05-09 02:31:05
阅读次数:
262
data segment
string1 db 'Please input a number:',0dh,0ah,'$'
string2 db 0dh,0ah,'It is a number!',0dh,0ah,'$'
string3 db 0dh,0ah,'It is not a number!',0dh,0ah,'$'
data ends
code segment
...
分类:
其他好文 时间:
2014-05-09 01:34:35
阅读次数:
350
data segment
string1 db 'Please input a number:',0dh,0ah,'$'
string2 db 0dh,0ah,'It is a number!',0dh,0ah,'$'
string3 db 0dh,0ah,'It is not a number!',0dh,0ah,'$'
data ends
code segment
...
分类:
其他好文 时间:
2014-05-09 01:18:43
阅读次数:
316