How To Create A Variable In Mysql

[Solved] How To Create A Variable In Mysql | Sql - Code Explorer | yomemimo.com
Question : mysql declare variable

Answered by : enchanting-earthworm-uujrw59m97fx

SET start = 1;
SET finish = 10;
SELECT * FROM places WHERE place BETWEEN start AND finish;

Source : https://stackoverflow.com/questions/11754781/how-to-declare-a-variable-in-mysql | Last Update : Sat, 19 Sep 20

Question : declare variable in mysql

Answered by : blueeyed-barracuda-6i15jmcer3xc

SET @start = 1, @finish = 10; 

Source : https://stackoverflow.com/questions/11754781/how-to-declare-a-variable-in-mysql | Last Update : Sun, 29 Aug 21

Answers related to how to create a variable in mysql

Code Explorer Popular Question For Sql