当SQL具有子查询时,MonetDBLite R不返回任何值

时间:2018-08-09 19:47:34

标签: monetdblite

SQL中包含子查询时,R中的

MonetDBLite没有返回预期的结果。例如:

select max(asofdate) from mytable

返回“ 2018-03-01”。

并且:

select count(*) from mytable where asofdate = '2018-03-31'

返回正确的行数,例如5600

但是:

select count(*) from mytable where asofdate = (select max(asofdate) from mytable)

返回0。

如何在MonetDBLite中使用子查询?

0 个答案:

没有答案