请大神帮忙看下判断时间代码为何不正确执行
代码如下temp2的kqdate字段为日期时间型, shangwushijian 变量为 字符型 值为 "20140422 12:30"
temp2中有四条记录 分别为
2014.04.22 08:40
2014.04.22 14:10
2014.04.22 08:00
2014.04.23 08:10
现在想把 2014.04.22的12:30之前记录提取到临时表temp3中,但以下代码执行后, 2014.04.22 14:10 也在temp3中,请帮忙看下 非常感谢.
select * from temp2 where temp2.kqdate > ctot(shangwushijian) into cursor temp3