㈠ sql中如何判斷時間大小呢 急!
時間要有單引號的,不然實際執行的是算術運算
select * From Book where EditionDate>(2001-1-1) 等同於
select * From Book where EditionDate>1999
1999可以隱式轉換為日期,所以有結果。
正確寫法是
select * From Book where EditionDate>'2001-1-1' and EditionDate<'2008-12-31'
㈡ 判斷時間的sql語句
select A,B, case when convert(int,A)-convert(int,B)>0 then 'Y' else 'N' end from Table
㈢ sql對時間段判斷語句
這個是SQL中的判斷語句,你可以使用CASE……WHEN……
SELECTto_char(a.attdate,'yyyy-mm-dd')ASdate,--使用日期
(CASEWHENa.attdate<'2013-7-1'THEN'甲'ELSE'乙'END)ASperson--使用人
FROMa,b
--Ps:SQL的關鍵字使用大寫是一個好的習慣。
㈣ sql server怎麼判斷一個時間是在某一時間段
select * from 表 where 日期欄位=【開始日期】and 日期欄位=【截止日期】。
and convert(char(8),日期欄位,108)=【開始時間】and convert(char(8),日期欄位,108)<=【截止時間】。
㈤ sql語句判斷時間區間的問題
1、首先,我們來定義一個時間欄位的參數,暫且命名為Date,語句為:declare @Date datetime。
㈥ sql server時間判斷語句
SELECT
CASE WHEN 時間欄位 is null THEN GETDATE()
ELSE 時間欄位 END
FROM Table_A
㈦ sql語句日期判斷問題
10年前這里有3種意思,
1、10年前的那一年
select * from 表 where datediff(year,日期欄位,'1999-11-25')=10
2、10年前的那一天
select * from 表 where datediff(day,日期欄位,dateadd(year,-10,'1999-11-25'))=0
3、10年以前的所有年份
select * from 表 where datediff(year,日期欄位,'1999-11-25')>=10
㈧ sql 時間判斷 應該如何寫
語句:select [入場時間],[錄入時間], case when [入場時間]>=[錄入時間] then '不超時' else '超時' end [是否超時] from table
㈨ SQL中if語句判斷時間怎麼寫
建議這種邏輯在代碼中寫,不要增加資料庫負擔
非要寫在sql裡面可以用case when:
case when (tm > '7:00' and tm < '10:30') then "早上" else case when (tm > '10:30' and tm < '15:00') then "中午" else case when(tm > '17:00' and tm < '21:00') then "晚上" end end end