1、错误描述
1 queries executed, 0 success, 1 errors, 0 warnings 查询:SELECT a.createUserId AS typeId, (SELECT COUNT(c.id) FROM t_aps c WHERE c.`status` IN (2, 5) AND c.createTime >= start... 错误代码: 1247 Reference 'startTime' not supported (forward reference in item list) 执行耗时 : 0 sec 传送时间 : 0 sec 总耗时 : 0 sec
2、错误原因
由于在存储过程中,传参数时:
c.createTime >= startTime and c.createTime <= endTime
为了检测查询语句是否正确,我直接将存储过程中的带有参数的查询语句放在客户端运行,导致报错
3、解决办法
(1)将带有参数的语句段注释掉
(2)将参数换成具体的数值