针对oracle数据查询的数据,行转列1.wm_concat函数:例一:select
c1,c2,wm_concat(c3) from T where.... group by c1,c2查询结果自动用“,”分割例二:select
c1,c2,wm_concat(c3)over(partition ...
分类:
数据库 时间:
2014-05-10 02:10:46
阅读次数:
430
1、查询表的所有列及其属性select t.*,c.COMMENTS from
user_tab_columns t,user_col_comments c where t.table_name = c.table_name and
t.column_name = c.column_name and...
分类:
数据库 时间:
2014-05-10 01:37:51
阅读次数:
422
SELECT * FROM (SELECT * FROM calenderDetail A ORDER
BY a. calender desc ) WHERE rownum <3
;//计算时间大于当前时间的最近2条记录取当前小时,以及相隔一小时v_begin_date:=to_date(to_ch...
分类:
数据库 时间:
2014-05-09 17:03:41
阅读次数:
620
存储过程检测用户名是否重户create proc checklogin@username
nchar(20),@pwd nchar(20),@hasrow int outputasselect @hasrow=count(*) from users
where and GO存储过程写入数据crea....
分类:
Web程序 时间:
2014-05-09 16:40:52
阅读次数:
367
原文sql多表查询之一:Where 和
On的秘密对于还在SQL初级阶段的朋友来说,sql多表查询问题是一个比较有趣也容易出错的技术。什么时候会用到sql多表查询呢?是在两张或两张以上表单中通过某几个字段进行互联管理的时候,这就不得不说说sql多表查询中Where
和 On的秘密。在了解sql多表查...
分类:
数据库 时间:
2014-05-08 22:23:07
阅读次数:
400
类似这样的语句在mysql oracle 是可以执行成功的,select * from
classfirst where (classid ,classname) not in (select classid, classname from
classfirst where classid=2 )但...
分类:
数据库 时间:
2014-05-05 11:15:31
阅读次数:
386
String sql = "update kbr_user k set increment =
ifnull(k.increment,0) + " + increment + ",integral = ifnull(k.integral,0) + " +
integral + " where use...
分类:
数据库 时间:
2014-05-04 19:55:31
阅读次数:
341
??
SQL Server online consultants came across an interesting scenario where one of our client was unable to restore a native SQL Server backup successfully performed from one instance running on M...
分类:
数据库 时间:
2014-05-04 17:42:50
阅读次数:
394
deletefromtesttableawhere(a.testcontent)in(selecttestcontentfromtesttableGROUPBYtestcontenthavingcount(*)>1)andseqidnotin(selectmin(seqid)fromtesttablegroupbytestcontenthavingcount(*)>1)
分类:
数据库 时间:
2014-05-04 17:36:38
阅读次数:
314
查看一个数据库的所有表:SelectTABLE_NAMEFROM数据库名称.INFORMATION_SCHEMA.TABLESWhereTABLE_TYPE=‘BASETABLE‘(select*from表名where条件)查看一张表的表结构:sp_helptable_name(表名)获取的信息比较全sp_columnstable_name(表名)创建数据库:usemastergocreatedatabase..
分类:
数据库 时间:
2014-05-04 17:27:23
阅读次数:
456