发布时间:2013-03-07 11:09:58
1、查找表的所有索引(包括索引名,类型,构成列): select t.*,i.index_type from user_ind_columns t,user_indexes i where t.index_name = i.index_name and t.table_name = i.table_name and t.table_name = 要查询的表 2、查找表的主键(包括名称,构成列): select cu.* from user_cons_co.........【阅读全文】
发布时间:2013-01-23 16:46:55
1.lead 获取当前行后面一行的数据select c_fundcode, d_cdate, f_netvalue, f_income, lead(f_netvalue) over(partition by c_fundcode order by d_cdate desc) pre_netvalue, &.........【阅读全文】
发布时间:2013-01-16 19:59:38
decode 函数中如果结果又聚合函数,在group by语句中需要将decode判断的值或者项也加进去例如:SELECT A.C_FUNDCODE, A.D_REGISTERDATE, DECODE(A.C_FLAG, '1',  .........【阅读全文】