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中使用子查询?