语句
CREATE PROCEDURE delete_matches ( IN id INTEGER ) BEGIN
DELETE
FROM
lconstructionproject
WHERE
pid = id;
END
call delete_matches('1');
报错
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 delete_matches('1')' at line 10