如何从teradata timestamp(6)字段中搜索特定日期,例如:“ 2013-10-22”?
sel * from table A where date = '2013-10-22';
我尝试了上面的查询,这将引发错误。请帮忙!
您可以这样尝试:-
sel * from table A where date = date '2013-10-22';
由于采用ANSI标准格式(必须在关键字DATE之后)
看看这个