数据库中有表 table 时间列为date类型是(datetime)型 如何选取当天的数据用sql写
new timestamp(System.currentTimeMillis)应该可以
可以用模糊查询获取,select * from [table] where [date] like convert(char(10),getdate(),21)+'%'具体不知道获取当天日期(具体到天)有没问题,大致就是这个意思拉。