SQL Server replace, remove all after certain character(SQL Server 替换,删除特定字符后的所有字符)
问题描述
我的数据看起来像
ID MyText
1 some text; some more text
2 text again; even more text
如何更新 MyText 以删除分号之后的所有内容并包括分号,所以我只剩下以下内容:
How can I update MyText to drop everything after the semi-colon and including the semi colon, so I'm left with the following:
ID MyText
1 some text
2 text again
我查看了 SQL Server Replace,但不能'没有想到检查;"的可行方法
I've looked at SQL Server Replace, but can't think of a viable way of checking for the ";"
推荐答案
使用 LEFT 与 CHARINDEX 结合:
Use LEFT combined with CHARINDEX:
UPDATE MyTable
SET MyText = LEFT(MyText, CHARINDEX(';', MyText) - 1)
WHERE CHARINDEX(';', MyText) > 0
请注意,WHERE 子句会跳过更新没有分号的行.
Note that the WHERE clause skips updating rows in which there is no semicolon.
这里有一些代码来验证上面的 SQL 是否有效:
Here is some code to verify the SQL above works:
declare @MyTable table ([id] int primary key clustered, MyText varchar(100))
insert into @MyTable ([id], MyText)
select 1, 'some text; some more text'
union all select 2, 'text again; even more text'
union all select 3, 'text without a semicolon'
union all select 4, null -- test NULLs
union all select 5, '' -- test empty string
union all select 6, 'test 3 semicolons; second part; third part;'
union all select 7, ';' -- test semicolon by itself
UPDATE @MyTable
SET MyText = LEFT(MyText, CHARINDEX(';', MyText) - 1)
WHERE CHARINDEX(';', MyText) > 0
select * from @MyTable
我得到以下结果:
id MyText
-- -------------------------
1 some text
2 text again
3 text without a semicolon
4 NULL
5 (empty string)
6 test 3 semicolons
7 (empty string)
这篇关于SQL Server 替换,删除特定字符后的所有字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL Server 替换,删除特定字符后的所有字符
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01