标识符命名规范
1、不能以数字开头
2、不能使用关键字
3、只能使用_和$符号,不允许使用其它符号
定义MySQL变量的方法
set @userName="小可爱";
# 读取变量
select @userName as '结果名称';
# 读取时包含赋值操作
select @userName:='海绵宝宝' as '赋值查询名称';
set @x=5,@y=7;# 定义多个变量时可以使用,作为分割。
select @x + @y as '加法运算',@x - @y as '减法运算',
@x * @y as '乘法运算',@x / @y as '除法运算',@x % @y as '取模运算';# 除法保留4位有效小数
# 关系运算
select @x < @y as'大小判断';# 返回结果1代表true,返回结果0代表false
# 逻辑运算
select true or false;# 依然符合&(and)与、|(or)或。
通过变量进行实际的操作
set @cityName='Rotterdam,Zaanstad,Zwolle';
select * from city where `Name` =@cityName;
# 变量只能处理字符,并不能代替符号或者关键字进行使用
set @cityName1='Rotterdam';
set @cityName2='Zaanstad';
set @cityName3='Zwolle';
select * from city where `Name` in (@cityName1,@cityName2,@cityName3);
浮点数0的处理
set @dx=0.11,@dy=55.5;
select @dx + @dy;# 显示结果有很多的0
set @result=@dx + @dy;
select @result;# 去掉0