資料庫查詢時間
㈠ 怎樣在資料庫中查詢時間
資料庫表add中有一個入住時間欄位(如rf)。
入住時間與現在的時間差=datediff("h",rs("rf"),now())'入住到現在的時間,其中H為小時數
㈡ sql 查詢時間、日期范圍內的數據
SELECT*
FROMTableName
WHERECONVERT(DATETIME,CONVERT(VARCHAR,日期列)+''+CONVERT(VARCHAR,時間列))BETWEEN'2012-1-107:00:00'AND'2012-1-410:00:00'
㈢ sql查詢時間段
select * from 表 where 日期欄位>='開始日期' and 日期欄位<='截止日期'
and convert(char(8),日期欄位,108)>='開始時間' and convert(char(8),日期欄位,108)<='截止時間'
例如:
select * from tb1 where dDate>='2010-11-05' and dDate<='2010-11-15'
and convert(char(8),dDate,108)>='22:30:00' and convert(char(8),dDate,108)<='23:00:00'
㈣ 資料庫的日期區間查詢方法。
access中有個mid函數,可以用來截取字元串或者日期。
select * from 表名 where mid([TestTime],5,10) ='04/19/2013'其中,5代表截取的開始位置,從左數,10代表截取的長度。
資料庫的日期區間查詢有兩種情況:
1:查詢給定時間在開始時間列與結束時間列范圍中數據;
2:查詢日期列在開始時間列與結束時間列范圍中數據。
第一種:<,>, <= , >=
select * from 表名 where 日期列 >= to_date('2015-10-20 00:00:00','yyyy-mm-dd hh24:mi:ss')
and t.日期列 <= to_date('2015-10-20 23:59:59','yyyy-mm-dd hh24:mi:ss')。
第二種 between and
select * from 表名 where 日期列 between to_date('2015-10-20 00:00:00','yyyy-mm-dd
hh24:mi:ss')and to_date('2015-10-20 23:59:59','yyyy-mm-dd hh24:mi:ss')。
(4)資料庫查詢時間擴展閱讀:
SQL資料庫語句:
創建資料庫:
CREATE DATABASE database-name。
刪除資料庫:
drop database dbname。
創建新表:
create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)。
刪除新表:
drop table tabname。
增加一個列:
Alter table tabname add column col type。
添加主鍵:
Alter table tabname add primary key(col)。
刪除主鍵:
Alter table tabname drop primary key(col)。
創建索引:
create [unique] index idxname on tabname(col….)。
刪除索引:
drop index idxname。
創建視圖:
create view viewname as select statement。
刪除視圖:
drop view viewname。
參考資料來源:網路-sql語句大全
㈤ sql查詢語句,查詢時間
oracle date等類型是帶時間部分的,所以你這個2011-07-05 只是相當於2011-07-05 00:00:00這個時刻,按你的寫法大於這個時刻的是不會刪除的。如果你確實要刪除2011-07-05的建議你用以下寫法:
delete from jf_syslog where inputtime
㈥ 關於SQL時間段查詢
Select * From 表名
Where to_date(日期欄位,'mm/dd/yyyy hh24:mi:ss') Between
to_date('2/1/2008 00:00:00','mm/dd/yyyy hh24:mi:ss')
And to_date('2/15/2008 23:59:59 hh24:mi:ss')
日期欄位最好強轉下格式用to_date()
㈦ 怎麼把sql查詢一條記錄所用的時間查出來
取查詢前的系統時間(函數:getdate()),執行你的SQL,取查詢後的系統時間,並求兩次時間的差。
但這會有點誤差,不過幾乎是可以忽略的
㈧ SQL查詢時間范圍語句
以下為MS_SQL的寫法分日期和小時條件;
select *
from xy
where
(id=27 or id=28)and convert(varchar(10),WRITETIME,120) between '2009-01-26' and '2009-02-06'
and
convert(varchar(8),WRITETIME,108) between '08:00:00'and '12:30:00'
㈨ SQL 查詢 時間
convert(datetime,'2009-4-24',120) 轉成 datetime,再轉換成varchar進行比較
select * from Warehousing where convert(varchar(10),Scantime,120)=convert(varchar(10),convert(datetime,'2009-4-24',120),120 )
㈩ 資料庫按時間查詢
--我用6個變數表示你的
dropdownlist
傳過來的值
假設傳過來的時候是字元串形式
Declare
@year1
varchar(10),@year2
varchar(10),@month1
varchar(10),@month2
varchar(10),
@
day1
varchar(10),@day2
varchar(10)
;
Begin
select
*
from
tb
where
convert(varchar(10),時間欄位,120)
between
@year1+'-'+right('0'+@month1,2)+'-'+right('0'+@day1,2)
and
@year2+'-'+right('0'+@month2,2)+'-'+right('0'+@day2,2)
End;