我需要在sybase where子句中指定日期值.例如:
select * from data where dateVal < [THE DATE]
cmsherratt.. 25
使用convert函数,例如:
select * from data where dateVal < convert(datetime, '01/01/2008', 103)
转换样式(103)确定要使用的日期格式.
使用convert函数,例如:
select * from data where dateVal < convert(datetime, '01/01/2008', 103)
转换样式(103)确定要使用的日期格式.
以下是关于日期可以使用的不同格式的一个很好的参考:
http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc38151.1510/html/iqrefbb/Convert.htm