Answers for "assign value to variable in mysql select statement"

SQL
9

how to create a variable in mysql

-- MySQL

SET @variable_name := value;
Posted by: Guest on July-22-2020
0

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 "assign value to variable in mysql select statement"

Code answers related to "SQL"

Browse Popular Code Answers by Language