shaddf Posted August 16, 2017 Share Posted August 16, 2017 i have this table: MatchID | PlayerID | Goals -------------------------- 2 1 4 2 3 3 2 13 0 2 9 0 2 5 0 iam trying to get total using dynamic sql query like so: DECLARE TotalVariable INT; SET @l_sql_total=CONCAT(' SELECT SUM(x.Goals) into ',TotalVariable,' FROM a'); but iam getting an error: ERROR 1064 (42000): 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 'NULL' at line 1 And when I change to this: SET @l_sql_total=CONCAT(' SELECT SUM(x.Goals) into TotalVariable FROM a'); i get this error despite the fact that it has already been declared above: ERROR 1327 (42000): Undeclared variable: TotalVariable how can I clear this? Quote Link to comment Share on other sites More sharing options...
requinix Posted August 16, 2017 Share Posted August 16, 2017 DECLARE TotalVariable INT; SELECT SUM(x.Goals) into TotalVariable FROM a; Quote Link to comment Share on other sites More sharing options...
shaddf Posted August 16, 2017 Author Share Posted August 16, 2017 DECLARE TotalVariable INT; SELECT SUM(x.Goals) into TotalVariable FROM a; Iam using prepared statements to do this. And when i prepare that answer of yours ,it does not work Quote Link to comment Share on other sites More sharing options...
requinix Posted August 16, 2017 Share Posted August 16, 2017 You cannot SELECT...INTO a variable with a prepared statement. What you've posted does not need to be prepared. What is your real procedure code? Quote Link to comment Share on other sites More sharing options...
shaddf Posted August 16, 2017 Author Share Posted August 16, 2017 You cannot SELECT...INTO a variable with a prepared statement. What you've posted does not need to be prepared. What is your real procedure code? why not can you explain more please? Quote Link to comment Share on other sites More sharing options...
Solution requinix Posted August 16, 2017 Solution Share Posted August 16, 2017 When it doubt, RTFM. Because local variables are in scope only during stored program execution, references to them are not permitted in prepared statements created within a stored program. Prepared statement scope is the current session, not the stored program, so the statement could be executed after the program ends, at which point the variables would no longer be in scope. For example, SELECT ... INTO local_var cannot be used as a prepared statement. This restriction also applies to stored procedure and function parameters. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.