SQL笔记
Bugjay
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQL学习笔记
select * from ( select * from table t where t.no='条件' order by t.iddesc ) C where rownum=1; insert into ri_i_inform select SEQ_RI_I_INFORM.nextval,t.ced_quote_no,t.ced_quote_endo_no,t.branch_code,t原创 2013-02-21 10:15:05 · 589 阅读 · 0 评论 -
oracle存储过程 cursor使用
范例: create or replace procedure test is v_count number(4); cursor v_c is select * from "t2VoucherHandNo"; begin select count(*) into v_count from "t2VoucherHandNo"; if转载 2013-03-14 09:50:38 · 2117 阅读 · 0 评论 -
SQL JOIN方法整理
1、数据准备 表原创 2014-04-17 19:18:09 · 779 阅读 · 0 评论
分享