mysql - Adding a value into the variable in stored procedure -
select column_1,column_2 table1 ;
i need column_1 , column_2 values variables can manipulation before inserting table.
thank help
declare @var1 int declare @var2 int select @var1 = column_1, @var2 = column_2 table you can set params , you'd them.
Comments
Post a Comment