解析这个字符串

发布于 2024-11-09 12:34:27 字数 418 浏览 0 评论 0原文

我们解析这个的其他方法是什么:

DECLARE @t AS TABLE(DESCRIPTION NVARCHAR(50))

INSERT INTO @t(DESCRIPTION)

SELECT '1/8 qwe dfg asd asd' UNION ALL

SELECT '1/2 dfg asd qwe asd' UNION ALL

SELECT '1/2 asd dfg qwe asd' UNION ALL

SELECT '1/2 qwe asd asd rtq'

SELECT * FROM @t

/* 输出: */

--1/8 qwe

--1/2 dfg

--1/2 asd

--1/2 qwe

不要使用固定长度,也许是 charindex 或其他东西:)

What are the other ways to we parse this:

DECLARE @t AS TABLE(DESCRIPTION NVARCHAR(50))

INSERT INTO @t(DESCRIPTION)

SELECT '1/8 qwe dfg asd asd' UNION ALL

SELECT '1/2 dfg asd qwe asd' UNION ALL

SELECT '1/2 asd dfg qwe asd' UNION ALL

SELECT '1/2 qwe asd asd rtq'

SELECT * FROM @t

/* Output : */

--1/8 qwe

--1/2 dfg

--1/2 asd

--1/2 qwe

Don't use fixed lenght, maybe charindex or something :)

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

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

发布评论

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

评论(1

心意如水 2024-11-16 12:34:27

怎么样:(

substring (description,
           1,
           charindex (' ',
                      description,
                      charindex(' ', description)+1
                     )-1
          )

我无法测试它,因为我无权访问 SQL Server)。

How about:

substring (description,
           1,
           charindex (' ',
                      description,
                      charindex(' ', description)+1
                     )-1
          )

(I can't test it as I don't have access to SQL Server).

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