sql函式的一些用途示例

2021-10-23 18:28:01 字數 810 閱讀 9946

1.將時間格式的字段查詢為固定格式

select date_format(create_time, 『%y%m%d-%h%i-%s』) as time_str from table_name;

20200204-2116-55

2.將存放檔案路徑的字段擷取最後名稱部分

select reverse( left( reverse(file_location),locate(』/』 , reverse(file_location) )-1) ) as file_name from table_name;

3.nvl

select nvl(a.name,a.number) from tablea a

當name欄位的值為null時,取number欄位,否則取name欄位的值

4.decode

select decode(b.id,1,b.name,b.number) from tableb b

判斷欄位id是否等於某個值,返回為true則取name欄位的值,否則取number欄位的值

5.mysql中查詢某個字段值大於當前時間的sql

select * from table_name where end_time>now()

如果是sqlserver可以用getdate()

6.mysql中的concat()拼接字串

update tablename set coloumname = concat(date_format(create_time, 『%y%m%d-』),floor(rand()*9000+1000) )——floor(rand()*9000+1000)隨機四位數

UITextView 的一些用途

uitextview textview uitextview alloc initwithframe cgrectmake 50,100,275,100 textview.backgroundcolor uicolor graycolor nsstring str 編輯文字時沒那麼重要,但如果要18...

typedef的一些用途

用途一 定義一種型別的別名,而不只是簡單的巨集替換。可以用作同時宣告指標型的多個物件。比如 char pa,pb 這多數不符合我們的意圖,它只宣告了乙個指向字元變數的指標,和乙個字元變數 以下則可行 typedef char pchar pchar pa,pb 這種用法很有用,特別是char pa,...

python 一些函式的使用示例

目錄 zip的使用示例 datetime的使用示例 pandas.series.isin的使用示例 str.format 的使用示例 map的使用示例 list.count 的使用示例 pandas.to datetime的使用示例 zip的使用示例 a 1,2,3 b 11,12,13 c 21,...