sql >> Databáze >  >> RDS >> Sqlserver

Jak extrahovat více řetězců z jednotlivých řádků v SQL Server

K odstranění řetězců můžete použít cte rekurzivně.

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

Výsledek

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


  1. Proč v psql nemají některé příkazy žádný účinek?

  2. Výhody výkonu SQL Server 2016 Enterprise Edition

  3. Jak vyřešit, že přihlášení k Azure Windows nejsou v této verzi SQL Server podporována?

  4. Převeďte datum na Juliánský den v PostgreSQL