#MySQL变量的定义和使用
#一、标识符命名规范
#1.以字母或下划线开头,不能以数字开头
#2.不允许使用关键字和保留字
#3.只允许使用_和¥作为标识符,不允许使用其他符号
#变量的定义方法
#set在update中使用过set,update声明修改表,set声明修改列
set @userName='小可爱';
set@userName='小哈尼';
#查询中赋值
select @userName='海绵宝宝';
select@userName as'名称';
#一句话定义多个变量,使用【,】进行区分
set @userName1='章鱼哥',@userName2='蟹堡王',@userName3='派大星';
select @userName1,@userName2,@userName3;
#MySQL变量四则运算以及取模操作
set @x=5,@y=7,@dx=0.1,@dy=5.56;
select @x + @y;
select @x - @y;
select @x * @y;
select @x / @y;#除法这里要注意除数不能为0,如果为0则返回null,结果保留四位小数
select @x % @y;#取模,除数不能为0
#在浮点数运算时返回的结果会补充很多的0,需要消除这些无用的0
set @result1 = @dx + @dy;
set @result2 = @dx - @dy;
set @result3 = @dx * @dy;
set @result4 = @dx / @dy;
set @result5 = @dx % @dy;#取模%
select @result1,@result2,@result3,@result4,@result5;select ROUND(select @dx / @dy,2);#无法使用
#关系运算符与逻辑运算符
set@x=5,@y=7;
select @x <= @y;#关系运算返回的是0与1,其中0代表false,1代表true
select @x>@y;
select @x=@y;#判断是否相等使用(=)一个等号,无需两个等号(==)#逻辑运算符 and(&)以及or(|)
select TRUE and TRUE;
select FALSE or TRUE;
#变量在SQL当中的使用
set @userName='龙姑娘';
set @age=16;
SELECT * FROM student where userName=@userName or age=@age
#需要进行多个信息查询的时候变量不能使用字符串拼接,因为无法识别“,”或关键字
set @userName1='龙姑娘';
set @userName2='赵灵儿';
SELECT * FROM student where userName in (@userName1,@userName2);