作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何创建一个有条件的虚拟列我有一个包含列的表 a
b
c
c 应该是有条件的虚拟 =>
1- if 'b' < 16.5 the value should be "1"
2- if 'b' BETWEEN 16.5 AND 18.5 the value should be "2"
3- if 'b' = 25 the value should be "3"
最佳答案
你可以在以下情况下使用
select a, b, case when b <16.5 then 1
when b between 16.5 and 18.5 then 2
when b = 25 then 3
end c
from my_table
你还应该用 else 管理其他情况
select a, b, case when b <16.5 then 1
when b between 16.5 and 18.5 then 2
when b = 25 then 3
else 0
end c
from my_table
关于mysql - 如何在 MYSQL 中使用 if 查询创建 VIRTUAL 列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58671765/
我是一名优秀的程序员,十分优秀!