Answers for "mysql select and assign to variable"

SQL
1

how to put value in variable mysql

SET variable = (SELECT SUM(tax) FROM taxable_transactions);
Posted by: Guest on October-25-2020
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 "mysql select and assign to variable"

Code answers related to "SQL"

Browse Popular Code Answers by Language