作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一张表格,上面有很多公司的描述。
TABLE dbo.[TblCompanies]
(
[CompanyID] [int] IDENTITY(1,1) NOT NULL,
[CompanyProfile] [nvarchar](max) NOT NULL
)
描述看起来像那样
"Agilent Technologies, Inc. provides application focused solutions to .."
我还有另一个有一些字符串的表
TABLE dbo.[TblFilter]
(
[Pattern] [nvarchar](100) NOT NULL
)
例如
technology
applications
如何获取所有公司的 CompanyIDs
,这些公司在其 CompanyProfile< 中具有 ALL
? TblFilter
中的值CompanyProfile
中过滤器字符串的出现顺序不重要。 是重要的是所有这些字符串将在CompanyProfile
中。
最好是没有游标的解决方案。
谢谢。
最佳答案
这样试试
我希望我最终做对了:
任何匹配都将计为 1
。这些值的 SUM
必须等于表 pattern
DECLARE @companies TABLE(ID INT IDENTITY, YourText VARCHAR(100));
INSERT INTO @companies VALUES
('This contains abc and xyz')
,('This contains mno')
,('This contains abc and xyz and mno')
,('This contains nothing')
,('This contains abc');
DECLARE @pattern TABLE(ID INT IDENTITY,YourPattern VARCHAR(100));
INSERT INTO @pattern VALUES
('abc')
--,('def')
,('xyz');
SELECT c.ID,c.YourText
FROM @companies AS c
CROSS JOIN @pattern AS p
GROUP BY c.ID,c.YourText
HAVING SUM(CASE WHEN c.YourText LIKE '%' + p.YourPattern + '%' THEN 1 ELSE 0 END)=(SELECT COUNT(*) FROM @pattern)
关于sql - 在 SQL 查询的 WHERE 子句中使用表的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39266137/
我是一名优秀的程序员,十分优秀!