Sqlserver
 sql >> база данни >  >> RDS >> Sqlserver

Как да извлечете множество низове от единични редове в SQL Server

Можете да използвате cte рекурсивно, за да премахнете низовете.

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

Резултат

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. UNIQUE - начин да имате уникални редове в таблицата?

  2. SQL сървър за съединяване на таблици и завъртане

  3. Как да включите общия брой върнати редове в набора от резултати от командата SELECT T-SQL?

  4. SQL Server 2008:ТОП 10 и различни заедно

  5. IN оператор SQL