日期:2014-05-17 浏览次数:20967 次
select * from yourtable where convert(datetime,A+' '+B)>=C
------解决方案--------------------
什么数据库?
MSSQL
select * from yourtable where cast((A+' '+B) as datetime)>=C
Access 转换字串到日期的函数是format,格式是
format(A+' '+B,'yyyy-mm-dd HH:mm:ss')