oracle實用語句及函式記錄

2021-08-31 05:40:44 字數 555 閱讀 2724

查詢插入:insert into table_a(col1,col2) select col1,col2 from tab_b where condition;

補齊函式:lpad(col1,length,'a'),左邊補齊函式,用於處理資料,將col1列的資料,格式化成固定length長度的字元,不足長度時用'a'補充,rpad是右邊補齊函式

空值轉換:nvl(col1,'a'),將col1列的null值或者空值轉換成'a'

case查詢:case   select cust_last_name, case credit_limit when 100 then 'low'   when 5000 then high'   else 'medium' end   from customers;

select department_id

from departments d

where exists

(select * from employees e

where d.department_id

= e.department_id);

oracle 常用語句 函式(持續記錄)

根據時間獲取最新的一條資料 select from select r.rownum num from tablename r order by r.create date desc t where num 1row number over函式 使用row number 函式進行編號,如 select...

SQL實用語句

sql實用語句 三 技巧 1 1 1,1 2的使用,在sql語句組合時用的較多 where 1 1 是表示選擇全部 where 1 2 全部不選,如 if strwhere begin set strsql select count as total from tblname where strwh...

C 實用語句

兩個方法都是傳遞乙個相對的 url,然後返回乙個相對於當前客戶端瀏覽器的相對url位址 但是兩者的返回值,卻截然不同 resolveclienturl返回相對於當前頁面下檔案的位址 resolveurl則返回頁面所在應用程式下的相對位址 例如 頁面 student main.aspx 影象 imag...