当前位置: 代码迷 >> SQL >> sql 时间段搜寻
  详细解决方案

sql 时间段搜寻

热度:41   发布时间:2016-05-05 14:47:37.0
sql 时间段搜索

select * from live_room where
begintime >= to_date('2011-05-07 00:00:00','yyyy-MM-dd hh24:mi:ss')
and begintime<= to_date('2011-05-08 00:00:00','yyyy-MM-dd hh24:mi:ss')

  相关解决方案