作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 postgres 中,您可以像这样对多个项目进行比较:
SELECT 'test' IN ('not','in','here');
这等同于:
SELECT ('test' = 'not' OR 'test' = 'in' OR 'test' = 'here');
是否有 SQL Server 的功能等效项?
最佳答案
它受支持,但您需要将表达式放在接受 bool 表达式的地方。例如,在 case
语句中:
select case when 'test' in ('not','in','here') then 1 else 0 end
-----------
0
(1 row(s) affected)
或者一个where
子句:
select * from T where C in (1,3,5,7,9)
关于sql-server - SQL Server 功能等同于 PostgreSQL "in",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/341232/
判断这2个相似的Uris实际上相同的标准方法是什么? var a = new Uri("http://sample.com/sample/"); var b = new Uri("http://sam
这个问题在这里已经有了答案: Why does "true" == true show false in JavaScript? (5 个答案) 关闭 5 年前。 可能我很困惑,但我无法理解这个愚蠢
我是一名优秀的程序员,十分优秀!