我使用的是Ubuntu 12.04,iReport-4.7,MySQL,mysql-jdbc驱动程序
我在MySQL中编写存储过程
DELIMITER //
CREATE PROCEDURE first()
BEGIN
select * from person where id in (11,22,33);
END //
DELIMITER;
返回id
& name
作为字段
&安培;从iReport中调用它
select id+1,name from (call first)
给我语法错误,
Caused by: com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'call first)' at line 1
但是当我在查询执行程序中运行call first
时,没有错误
我应该如何获得进一步计算所需的字段? 这在MS-SQL中是否可行?
答案 0 :(得分:1)