赞
踩
1.关系运算
- select @x <@y as '大小判断'; #返回结果1代表true, 如果是0代表false
- select @x >= @y;
2.逻辑运算
select True and false;# 依然符合&and、|(or)、^(xor)亦或
3.通过变量进行实际操作
- set @cityName='Rotterdam';
- select * from city where `Name` =@cityName;
- #变量只能处理字符,并不能代替符号或者关键字进行使用
- set @cityName1= 'Rotterdam';
- set @cityName2= 'Zaanstad';
- set @cityName3= 'Zwolle';
- select * from city where `Name` in (@cityName1,@cityName2,@cityName3);
4.浮点数0的处理
- set @dx=0.11,@dy=55.5;
- select @dx +@dy;#显示结果有很多的0
- set @result=@dx +@dy;
- select @result;#去掉0
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。