查询返回列不包含特定子字符串的行

发布于 2024-12-05 18:01:21 字数 125 浏览 1 评论 0原文

我可以在 WHERE 子句中添加一些内容,以便仅从该字段不包含特定字符串的列中选择字段。在这种情况下,我正在仔细检查以确保该特定字段中的代码中没有“cs”。代码可能类似于 cs023 或 bg425,只是为了让您更多地了解我想要做什么。

Is there something I can put in my WHERE clause to only select fields from a column where that field does not contain a certain string. In this case, I am looking through to make sure the codes in this particular field do not have a "cs" in it. The code could be something like cs023 or bg425, just to give you a little bit more of an idea what I'm looking to do.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

稀香 2024-12-12 18:01:21

您可以使用

WHERE [column] NOT LIKE '%cs%'

将 [column] 替换为您的列名称。

You can use

WHERE [column] NOT LIKE '%cs%'

Replace [column] with your column name.

︶葆Ⅱㄣ 2024-12-12 18:01:21

只是几个替代方案(对于喜欢 VB 的 InStr() 或 JS 的 .indexOf() 类型语法的人)。

WHERE CHARINDEX('cs', [column]) = 0;

...或者...

WHERE PATINDEX('%cs%', [column]) = 0;

您可能还想处理 NULL 值:

WHERE COALESCE([column], '') NOT LIKE '%cs%';

Just a couple of alternatives (for folks who like VB's InStr() or JS' .indexOf() type syntax).

WHERE CHARINDEX('cs', [column]) = 0;

...or...

WHERE PATINDEX('%cs%', [column]) = 0;

You might also want to deal with NULL values:

WHERE COALESCE([column], '') NOT LIKE '%cs%';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文