Sqlserver
 sql >> Baza danych >  >> RDS >> Sqlserver

Jak wyodrębnić wiele ciągów z pojedynczych wierszy w SQL Server

Możesz użyć cte rekursywnie, aby usunąć ciągi.

declare @T table (id int, [text] nvarchar(max))

insert into @T values (1, 'Peter ([email protected]) and Marta ([email protected]) are doing fine.')
insert into @T values (2, 'Nothing special here')
insert into @T values (3, 'Another email address ([email protected])')

;with cte([text], email)
as
(
    select
        right([text], len([text]) - charindex(')', [text], 0)),
        substring([text], charindex('(', [text], 0) + 1, charindex(')', [text], 0) - charindex('(', [text], 0) - 1) 
    from @T
    where charindex('(', [text], 0) > 0
    union all
    select
        right([text], len([text]) - charindex(')', [text], 0)),
        substring([text], charindex('(', [text], 0) + 1, charindex(')', [text], 0) - charindex('(', [text], 0) - 1) 
    from cte
    where charindex('(', [text], 0) > 0
)
select email
from cte

Wynik

email
[email protected]
[email protected]
[email protected]


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Pomiń niektóre kolumny w SqlBulkCopy

  2. SQLException :ciąg znaków lub dane binarne zostaną obcięte

  3. SQL Server ON DELETE wyzwalacz

  4. Usuń nagłówek kolumny z wyniku zapytania SQL Server

  5. Jak uruchomić wiele poleceń SQL w jednym połączeniu SQL?