自学内容网 自学内容网

MySQL变量的声明与使用

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;


原文地址:https://blog.csdn.net/meiqi71/article/details/138601751

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!