1樓:匿名使用者
這個是用sql是可以實現,但是需要轉換多次資料型別,會很麻煩,還是建議用**求吧。
我也把這個貼給你吧。
create table testtimevarchar(time1 varchar(10),
time2 varchar(10)
)insert into testtimevarchar values('18:30','21:21')
select datepart(mi,convert(datetime,time2)-convert(datetime,time1))+datepart(hh,convert(datetime,time2)-convert(datetime,time1))*60 from testtimevarchar
2樓:
select datediff(n,cast(時間六 as datetime),cast(時間五 as datetime)) from table
3樓:匿名使用者
擷取前乙個數(18),轉換為分鐘,然後再加上後乙個數(30),這樣不就行了
4樓:匿名使用者
select convert(datetime,時間五,108) - convert(datetime,時間六,108) from aaaaaaa
sql語句中偽列用於where從句
唐城冬 select from select 1 as num from table t where num 0 在sql語句中 要使用contans必須建立什麼 兄弟連教育北京總校 前言 微軟的sql server資料庫是一個在中低端企業應用中佔有廣泛市場的關係型資料庫系統,它以簡單 方便 易用等...
sql語句中的符號是什麼意思,sql 語句中 符號是什麼意思?
以下希望對你有所幫助。儘管宣告字串常量的標準方法通常都很方便,但是如果字串包含很多單引號或者反斜槓,那麼理解字串的內容可能就會變得很苦澀,因為每個單引號都要加倍。為了讓這種場合下的查詢更具可讀性,postgresql 允許另外一種稱作 美元符包圍 的字串常量宣告辦法。一個通過美元符包圍宣告的字串常量...
解釋sql語句中的不等於,解釋SQL語句中的“不等於”
erp小 sql中有兩種方式表示不等於,一種是 不含引號 另一種是 不含引號 用法是一樣的。1 建立測試表,插入資料 create table test id int,name varchar 10 insert into test values 1,張三 insert into test valu...