小编典典

查询以从teradata时间戳返回特定日期(6)

sql

如何从teradata timestamp(6)字段中搜索特定日期,例如:“ 2013-10-22”?

sel * from table A
where date = '2013-10-22';

我尝试了上面的查询,这将引发错误。请帮忙!


阅读 315

收藏
2021-04-22

共1个答案

小编典典

您可以这样尝试:-

sel * from table A
where date = date '2013-10-22';

由于采用ANSI标准格式(必须在关键字DATE之后)

看看这个

2021-04-22