发布网友 发布时间:2022-04-08 09:23
共2个回答
懂视网 时间:2022-04-08 13:44
数据库例:考试表中有两个字段:startDate、endDate,分别代表考试开始时间、结束时间。现在需要查询某一时间段内正在进行的考试,实际只要满足考试的时间段和查询条件的时间段有交集即可,包含以下图片中的四种情况。使用表达式startDatePara <= endDate && endDatePara >= startDate可以确定。
数据库中包含开始时间、结束时间,并且查询条件也有开始时间、结束时间的查询方法
标签:
热心网友 时间:2022-04-08 10:52
select * from tablename t where to_char(t.begin_time,'yyyy-mm-dd')>=:time and to_char(t.end_time,'yyyy-mm-dd')<=:time追问表内 是追答上面应该能满足你的需求啊
mysql日期和字符相互转换方法
date_format(date,'%Y-%m-%d') -------------->oracle中的to_char();
str_to_date(date,'%Y-%m-%d') -------------->oracle中的to_date();
%Y:代表4位的年份
%y:代表2为的年份
%m:代表月, 格式为(01……12)
%c:代表月, 格式为(1……12)
%d:代表月份中的天数,格式为(00……31)
%e:代表月份中的天数, 格式为(0……31)
%H:代表小时,格式为(00……23)
%k:代表 小时,格式为(0……23)
%h: 代表小时,格式为(01……12)
%I: 代表小时,格式为(01……12)
%l :代表小时,格式为(1……12)
%i: 代表分钟, 格式为(00……59)
%r:代表 时间,格式为12 小时(hh:mm:ss [AP]M)
%T:代表 时间,格式为24 小时(hh:mm:ss
mysql> SELECT UNIX_TIMESTAMP('2009-08-06') ; 时间戳比较
->1249488000