在 sql server 2005 中进行通配符搜索的最佳方法是什么?

发布于 2024-07-10 12:19:40 字数 327 浏览 11 评论 0原文

因此,我有一个存储过程,它接受诸如1234567890之类的产品代码。 我想为这些产品提供通配符搜索选项。 (即 123456*)并让它返回所有匹配的产品。 做这个的最好方式是什么?

我过去曾使用过如下所示的内容:

SELECT @product_code = REPLACE(@product_code, '*', '%')

然后在 product_code 字段上进行 LIKE 搜索,但我觉得它可以改进。

So I have a stored procedure that accepts a product code like 1234567890. I want to facilitate a wildcard search option for those products. (i.e. 123456*) and have it return all those products that match. What is the best way to do this?

I have in the past used something like below:

SELECT @product_code = REPLACE(@product_code, '*', '%')

and then do a LIKE search on the product_code field, but i feel like it can be improved.

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

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

发布评论

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

评论(2

千笙结 2024-07-17 12:19:40

你已经做的已经是你能做的最好的了。

您可以尝试的一种优化是确保您允许的列上有索引。 SQL Server 仍然需要对通配符搜索进行完整扫描,但它只会针对特定索引而不是整个表。

与往常一样,在任何更改之前和之后检查查询计划是一个好主意。

What your doing already is about the best you can do.

One optimization you might try is to ensure there's an index on the columns you're allowing this on. SQL Server will still need to do a full scan for the wildcard search, but it'll be only over the specific index rather than the full table.

As always, checking the query plan before and after any changes is a great idea.

秉烛思 2024-07-17 12:19:40

一些随机的想法

这取决于情况,但您可能需要考虑:

  • 默认情况下始终查找子字符串。 例如,如果用户输入“1234”,您将搜索:

    哪里有类似“%1234%”的产品

  • 允许用户完全控制。 即简单地获取他们的输入并将其传递给 LIKE 子句。 这意味着他们可以提出自己的自定义搜索。 仅当您的用户有兴趣学习时这才有用。

    哪里有像@input这样的产品

A couple of random ideas

It depends, but you might like to consider:

  • Always look for a substring by default. e.g. if the user enters "1234", you search for:

    WHERE product like "%1234%"

  • Allow users full control. i.e. simply take their input and pass it to the LIKE clause. This means that they can come up with their own custom searches. This will only be useful if your users are interested in learning.

    WHERE product like @input

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