mysql函式記錄

2021-10-24 19:27:56 字數 924 閱讀 1491

substring_index(str,str1,a) 擷取字串

locate(substr,string)

weekday(now()) 周一為0,週日為6

adddate(now(),2) 後天

group_concat() 拼接分組資料,預設逗號分隔

date_format(now(),'%y/%m/%d') 格式化日期

substr(str, a, b) 擷取字串 下標從1開始算,不是0,從a開始擷取b個字元

trim() 

ifnull(expression, alt_value))

curdate()

ip位址和整型之間轉換,最大轉化為255.255.255.255

mysql> select inet_aton('192.168.88.123');

+-----------------------------+

| inet_aton('192.168.88.123') |

+-----------------------------+

|                  3232258171 |

+-----------------------------+

1 row in set (0.00 sec)

​mysql> select inet_ntoa('3232258171');

+-------------------------+

| inet_ntoa('3232258171') |

+-------------------------+

| 192.168.88.123          |

+-------------------------+

1 row in set (0.00 sec)

mysql 記錄函式 mysql 函式記錄

條件查詢 case case when then when then when then else end1.簡單case函式寫法 注意 的位置 select case when 1 then 男 when 0 then 女 else 保密 end as text from user 2.case搜...

Mysql函式記錄

1.instr srt,str 函式,得到字元第一次出現所在的位置,位置從1開始 select instr 1234 3 3 2.substring str,num 擷取字串,從索引位置擷取,包括索引位置,位置從1開始 select substring 123 2 23 3.concat str,連...

Mysql 函式記錄

1.一行轉多行 substring index 1 將一行拆分為多行 select a.id,substring index substring index a.ids,b.help topic id 1 1 as ids from inini a join mysql.help topic b o...