您好,欢迎访问一九零五行业门户网

sql查询结果格式化_MySQL

bitscn.com
sql查询结果格式化
有时候 我们需要对查询结果进行比较
如果值是 a ,则 返回a
如果值是b,则返回bb
以下sql在mysql中测试通过
java代码  
select   
id,  
monitor_rule_name,  
monitor_rule_condition,
case   
    when  monitor_rule_condition='lt' then '
    when  monitor_rule_condition='gt' then '>'  
    when  monitor_rule_condition='eq' then '>'  
end
as newcolumn
from monitor_config_rule_monitor
bitscn.com
其它类似信息

推荐信息