数据库查询时间
㈠ 怎样在数据库中查询时间
数据库表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;