易截截图软件、单文件、免安装、纯绿色、仅160KB

MYSQL中根据字段值判断返回不同的值

在mysql中有一张表,有三个字段total,max, min,都是int型的值,可以写一个sql语句完成功能:
根据每条记录中,如果total>max,返回2,如果total <min返回1,如果都条件都不符合返回0。急求!!!!
mysql?

差点看成ms sql了.

试试:

SQL code:
select * ,case when total>max then 2
when total <min then 1
else 0
end
from 表


select case when total > max then 2 else  case when total < min then 1 else null end end
from ta

case when

SQL code:
select case
when total > max then 2
when total < min then 1
else 0
end
from ta
试试

SQL code:
select case
when total > max then 2
when total < min then 1
else 0
end
from ta
试试

不好意思,因为已经有人回答了,所以将分给了第一个回答的人!见谅!大家的回答都挺对的!


相关问答:

C#读取mysql数据库问题

我使用C#连接mysql数据库读取其中的数据,
读取数据表中的Varchar类型的数据,如果是英文能够正常读取出来,
而如果是中文,就会显示为“??”,

如果把varchar类型换成binary类型,Asp.net程序能够正 ......

mysql有没有类似sqlserver的消息传递功能

mysql有没有类似sqlserver的消息传递功能

比如针对db之间的互相发消息 (消息传递)

没有。

除非你自己改写一下MYSQL的源代码然后编译运行。

借助其他语言

目前的mysql里面现成这样的功能。 ......

MySQL创建存储过程出错

在MySQL5.0中船舰存储过程通不过,提示:
[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' ......

mysql中 repair table

在mysql中repair table xxxxx;提示

mysql> repair table recordTbl;
+-----------------+--------+----------+----------------------------------------------+
| Table        ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号