当前位置: 代码迷 >> 其他数据库 >> sqlite中发生这样的列
  详细解决方案

sqlite中发生这样的列

热度:111   发布时间:2016-05-05 08:19:08.0
sqlite中产生这样的列
一个表quote,有三个字段
code,name,close
我希望产生第四个字段type,这个字段的取值
close>10  ,type=m
close<=10,type=n
请问,sqlite中如何实现?
------解决方案--------------------
select   q.date,q.close, case when close>10 then "m" else "n" end as type from  q;
  相关解决方案