How to Use Multiple Parameters in a MySQL *Prepared* Stored Procedure
问题 Although there are some good examples of multiple parameters being used in MySQL stored procedures, I have been unable to find a simple example that shows how to use them in a stored procedure that is prepared . The code below returns 'Incorrect arguments to EXECUTE' when calling it using: `call test_parms('my report','example.com'); I've tried with and without '@' in front of the parameter names (just gives an unknown column error), and different variations of the code . What am I doing