gpt4 book ai didi

sql - 在 SQL 查询的 WHERE 子句中使用表的值

转载 作者:行者123 更新时间:2023-12-02 15:17:50 24 4
gpt4 key购买 nike

我有一张表格,上面有很多公司的描述。

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com