MySQL变量的声明与使用
1、标识符不能以数字开头
2、自能使用_或$符号,不允许使用其他符号。
3、不允许使用系统关键字
将赋值与查询结合
set @userName = '刘德华';
select @userName:= '刘青云'; # 将赋值与查询结合
查询变量/使用变量
select @userName as '读取到的userName变量值';

整数类型与浮点数类型测试
set @x=5,@y=7;
select @x + @y as '5+7的结果';

浮点数计算异常显示无限00000000
set @dx=0.55,@dy=2;
select @dx + @dy;#浮点数计算异常显示无限00000000

去零操作,重新赋值即可以做到
set @result=(select @dx + @dy);
select @result;

通过修改变量的方式进行精准查询
set @cityName1='Kabul';
set @cityName2='Qandahar';
set @cityName3='Maastricht';
select * from city where `Name`=@cityName;
select * from city where `Name` in(@cityName1,@cityName2,@cityName3);
select @cityName;


![[C/C++] -- DFS搜索迷宫路径](https://img-blog.csdnimg.cn/direct/07288dddba6346efb3fc57bf2ce7dddf.png)

















