比较 SQL Server 中的两个字符串

发布于 2024-11-18 23:45:31 字数 243 浏览 2 评论 0原文

有没有办法比较 SQL Server 2008 存储过程中的两个字符串,如下所示?

int returnval = STRCMP(str1, str2)
  • 如果字符串相同,则返回 0;
  • 如果根据当前排序顺序,第一个参数小于第二个参数,则返回 -1。
  • 否则返回 1。

上述方法我在MySQL中找到,但在SQL Server中没有。

Is there any way to compare two strings in SQL Server 2008 stored procedure like below?

int returnval = STRCMP(str1, str2)
  • returns 0 if the strings are the same
  • returns -1 if the first argument is smaller than the second according to the current sort order.
  • returns 1 otherwise.

Above method I find in the MySQL but not in SQL Server.

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

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

发布评论

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

评论(2

暗地喜欢 2024-11-25 23:45:31

SQL Server 中没有内置的字符串比较函数,您必须手动执行此操作:

CASE
    WHEN str1 = str2 THEN 0
    WHEN str1 < str2 THEN -1
    WHEN str1 > str2 THEN 1
    ELSE NULL -- one of the strings is NULL so won't compare
END

注意:

  • 您可以使用 CREATE FUNCTION 等通过 UDF 包装它。
  • 如果出现以下情况之一,您可能需要 NULL 处理比较的字符串为 NULL
  • str1str2 将是列名或 @variables

There is no built-in string compare function in SQL Server, you have to do it manually:

CASE
    WHEN str1 = str2 THEN 0
    WHEN str1 < str2 THEN -1
    WHEN str1 > str2 THEN 1
    ELSE NULL -- one of the strings is NULL so won't compare
END

Notes:

  • you can wrap this via a UDF using CREATE FUNCTION etc.
  • you may need NULL handling in case one of the compared strings is NULL
  • str1 and str2 will be column names or @variables
灯角 2024-11-25 23:45:31

我用这个:

SELECT IIF(str1 = str2, 0, -1)

I use this:

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