stella
0
Q:

mysql declare variable

-- MySQL

SET @variable_name := value;
3
SET start = 1;
SET finish = 10;

SELECT * FROM places WHERE place BETWEEN start AND finish;
0
-- MySQL

DECLARE variable_name datatype(size) [DEFAULT default_value];
-- Declaring a variable without specifying a default value will result it
-- in being a null value.
-- Declare is what allows us to create a variable
0

New to Communities?

Join the community