如何在SQL Server 2016中将字符串中的重复项从表中删除

2022-04-17 00:00:00 sql sql-server sql-server-2016

我得到了一个包含一列字符串列的表。这些字符串由;分隔。现在,我想在拆分字符串后删除重复项。例如:

-----------
| w;w;e;e |
-----------
| q;r;r;q |
-----------
| b;n;n;b |
-----------

结果应为:

-------
| w;e |
-------
| q;r |
-------
| b;n |
-------
此外,它不应该是Select函数,而应该是delete函数(不是100%确定的)。因此原始表中的值将不再重复。


解决方案

对于update语句,这将消除您的列的重复项:

update t 
  set col = stuff((
    select distinct
      ';'+s.Value
    from string_split(t.col,';') as s
    for xml path (''), type).value('.','varchar(1024)')
    ,1,1,'');

在SQL SERVER 2016中,您可以使用string_split()stuff() with select ... for xml path ('') method of string concatenation仅连接不同的值。

select 
    t.id
  , t.col
  , dedup = stuff((
    select distinct
      ';'+s.Value
    from string_split(t.col,';') as s
    for xml path (''), type).value('.','varchar(1024)')
    ,1,1,'')
from t

dbfiddle演示:here

rextester demo:http://rextester.com/MAME55141;此demo在string_split()缺席的情况下使用Jeff Moden的CSV拆分器函数。

退货:

+----+---------+-------+
| id |   col   | dedup |
+----+---------+-------+
|  1 | w;w;e;e | e;w   |
|  2 | q;r;r;q | q;r   |
|  3 | b;n;n;b | b;n   |
+----+---------+-------+

拆分字符串引用:

  • Tally OH! An Improved SQL 8K "CSV Splitter" Function - Jeff Moden
  • Splitting Strings : A Follow-Up - Aaron Bertrand
  • Split strings the right way – or the next best way - Aaron Bertrand
  • string_split() in SQL Server 2016 : Follow-Up #1 - Aaron Bertrand

相关文章