Skip to content
Advertisement

Passing a column name as parameter to a stored procedure in mySQL

I’m creating some stored procedures to manage my DB. In particular, i want to create a stored procedore to edit a column, of a specific row, but i want to do it dinamically, passing the column name as an argument.

That’s what i want to do

Using the parameter keyi find the specific row in myTablethat i want to edit, and i want to use the parameter col to edit just the column that i want.

I’ve already tried using CONCATE()or defining local variables, as i read on other topic, but i haven’t find a solution.

Any help?

Advertisement

Answer

You would need to use dynamic SQL :

Please note that, as commented by Paul Spiegel, using a variable for column name creates a risk of SQL injection. One solution for improve security would be to make sure that the input col does exists in the target table, using MySQL information schema :

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement