【 使用环境 】测试环境
【 OB or 其他组件 】OB
【 使用版本 】社区版3.1.4
【问题描述】执行select 查询语句报错:Not supported feature or function
【问题现象及影响】
select *
from
CustomerInfo a
LEFT JOIN
followup f
ON f.opTime = (
SELECT
max(opTime)
from
followup
where
bookingDone = 2
and custId = a.id
)
where
a.companyId = ‘1’
只要加入了opTime = (select .........)的子查询,就会报Not supported feature or function,请问是怎么回事啊?同样的语句在mysql中都能正常执行