Answers for "using variables in mysql"

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

Code answers related to "SQL"

Browse Popular Code Answers by Language