Answers for "define a variable in mysql from select"

SQL
0

define a variable in mysql from select

SELECT salary INTO @variable1 FROM employee_info WHERE emp_id = 12345678 LIMIT 1;
SELECT salary, salary_group INTO @var1, @var2 FROM employee_info WHERE emp_id = 12345678;
Posted by: Guest on March-17-2020

Code answers related to "define a variable in mysql from select"

Code answers related to "SQL"

Browse Popular Code Answers by Language