Answers for "variable in function mysql"

SQL
3

mysql declare variable

SET start = 1;
SET finish = 10;

SELECT * FROM places WHERE place BETWEEN start AND finish;
Posted by: Guest on September-12-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