前端之家收集整理的这篇文章主要介绍了
在SQL语句中选择比较结果,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我如何实现以下目标:
select (1 < 2) as One,(1 > 2) as Two
这样它会产生以下结果:
One Two
-----------------
True False
我正在使用sql Server,但跨DBMS示例会很好.
假设这是
sql服务器,您可以使用
CASE语句.
select (case when (1 < 2) then 'True' else 'False' end) as one,(case when (1 > 2) then 'True' else 'False' end) as two
from table
在条件的位置,您也可以使用任何变量或任何列值.基本上是表达.
原文链接:https://www.f2er.com/mssql/78835.html