mysql sql 中實戰小技巧持續更新

2021-10-12 10:12:33 字數 521 閱讀 6346

一:在sql中計算兩個時間的相隔天數

語法:(select datediff(結束時間,開始時間));

結束時間-開始時間得到兩個時間的間隔天數

在專案中的體現:

"gettasklistbyscheduleid" resulttype=

"com.***.***"

>

select task_id as id,text,model.model_name as model,start_date,

progress,parent,end_date,

(select datediff

(end_date,start_date)

) as duration,schedule_id

from task

left join model on task.model = model.model_id

where schedule_id=#

<

/select>

MySQL SQL之常用小技巧

一 返回插入新記錄的id insert into 表名 字段列表 output inserted.id values 字段值列表 二 條件式排序 select from 表名 order by case when 欄位名 某值 then 1 else 0 end asc desc 三 清空表 tru...

前端實戰小技巧

前端知識小技巧 1 保留 首行 標題 清空列表 table tr not first html table tr not first empty 2 通過屬性隱藏input標籤型別 隱藏,但會佔位置 隱藏,但不會佔位置 通過jquery隱藏與顯示 p hide p show 3 前台動態新增opti...

js實戰小技巧彙總

記錄實戰開發中使用到的js技巧 二 陣列 如下 示例 let x string value indexof 1 小數點的位置 let y string value length x 有幾位小數 如下 react changeevent e onchange e this.changeevent e ...