mysql函式使用集合整理(後續有用到的函式,會新增進來)strlist格式:引數以」,」分隔 如 (1,2,6,8),這個函式很適合用來查詢包含多個值得列
find_in_set(str,strlist)
select
*from student where
find_in_set
(值, 欄位名)
;
返回傳入的天數,可以用來做日期對比
to_days
-- 查詢create_time為當天的資料
select
*from student where to_days
(create_time)
=to_days
(sysdate()
)
返回當前日期
curdate()
2019-10
-10
返回當前日期+時間
now()
2019-10
-1017:
47:55
返回當前時間
curtime()
17:47
:55
mysql if集合 MySQL使用if判斷詳解
select if sva 1,男 女 as ssva from taname where sva 12.2.控制流程函式 case value when compare value then result when compare value then result else result end...
mysql 集合 MySql集合查詢
select語句的查詢結果是元組的集合,所以多個select語句的結果可進行集合操作。集合操作主要包括並操作union 交操作intersect 差操作except。注意,參加集合操作的各查詢結果的列數必須相同 對應的資料型別也必須相同。本示例中的資料表有student,sc,course三個,資料...
mysql函式使用
1 取到查詢條件為乙個欄位的擷取部分 select a.order no from t order a where a.deleted 0 and substring a.order no,1,8 order by a.add time desc limit 12 字段逗號隔開的函式使用find i...