SQL學習筆記

2021-06-12 17:03:42 字數 656 閱讀 1951

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.creator_code,sysdate, t.origin_type,'0',sysdate,'0',t.ced_policyno,t.ced_endo_no,t.policystatus,sysdate from (select * from( select * from ri_i_inform

r where r.ced_quote_no='abej05002413p000092p' and r.ced_policyno=? and r.ced_quote_endo_no=? and r.origin_type=? order by r.informid desc) c where rownum=1) t;

存在多條資料,去序列號最大的一條

SQL 學習筆記 ( )

sql 語法特點 1 每個語句以 結束,中間用 包含,間隔。2 對變數和常量等需要用 包含。3 關鍵字大寫,變數名首大寫字母用表名表徵,然後用小寫表徵屬性 基本語句 desc 表名 檢視表詳細屬性 建表 create table 表名 屬性名 型別 約束 主鍵 primary key 如果是域為主鍵...

sql學習筆記

declare rc int declare stattime datetime declare endtime datetime select stattime 2008 06 22 00 00 00.000 select endtime 2008 06 22 01 00 00.000 while...

SQL學習筆記

一 資料庫的建立與刪除 create database demo drop database demo 二 表的定義與更改 1 表的定義 建立乙個學生情況表student create table student st class char 8 st no char 10 not null,st n...