Answers for "set variable 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
0

declare variable in mysql

SET @start = 1, @finish = 10;
Posted by: Guest on August-22-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language