sql常用函式的用法 持續更新中

2022-07-19 19:30:18 字數 702 閱讀 8314

1、replace(欄位名,舊的字串,新的字串)函式:mysql和達夢一樣用

sql示例:replace(title,substr(title, a,b ),「c」)

title:替換的字段

a:替換的起始位置,按1開始,寫0也是按1開始

b:替換的個數,從a開始算

c:要替換後的字串

2、目前知道if else 的兩種方法:如下

第一種:decode(字段,a,"a1",b,"b1","未知"):

a:欄位的值如果為a改為a1

b:欄位的值如果為b改為b1

"未知":欄位的值如果為其他改為「未知」

第二種:

case 字段  when 1 then '男'

when 0 then '女'

end 「性別」 

case:如果

when:等於

then:改成

更新的:

update hbb_ta_dftypeb set id = (case id when '1' then '一年' when '2' then '二年' when '3' then '三年' end)

where id in ('1','2','3')

3、 ifnull(字段,'a'):如果欄位的值為null改為a

4、 instrb(字段, 'a'):查詢a在字段的值的起始位置,找不到返回0

常用python函式總結 持續更新中

用途 函式大小寫 upper lower 尋字元string.find str,beg 0,end len string 返回索引,否則 1 根據字元分離出三元組 從右向左 partition str rpartition str 替換replace str1,str2 替換一批字元 先使用tran...

php 常用函式集合 持續更新中

在php的開發中,巧妙的運用php自帶的一些函式,會起到事半功倍的效果,在此,主要記錄一些常用的函式 1 time microtime 函式 time 獲取當前時間戳 microtime 獲取當前微秒字串 1 測試microtime 函式 2echo 當前時間戳,以秒為單位 time 3 echo ...

PHP的常用函式 持續更新

由於害怕遺忘,故在此記錄下常用的php函式,以便複習 作用 定義常量 注意,只能定義常量,不能定義變數。用法 define a 100 作用 向下取整 用法 echo intval 1.1 輸出結果是1 作用 獲得某一字元或一子字串在一字串中的位置 用法 str string echo strpos...