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

serwer sql dzieli wartości oddzielone przecinkami na kolumny

Dynamicznie rozwiąż ten problem, użyj DSQL, aby odpowiednio dodać więcej kolumn do wyniku.

--create split function
CREATE FUNCTION [dbo].[SO_Split]
(
    @List nvarchar(2000),
    @SplitOn nvarchar(5)
) 
RETURNS @RtnValue table
(

    Id int identity(1,1),
    Value nvarchar(100)
)
AS 
BEGIN
While (Charindex(@SplitOn,@List)>0)
Begin
Insert Into @RtnValue (value)
Select
    Value = ltrim(rtrim(Substring(@List,1,Charindex(@SplitOn,@List)-1)))
    Set @List =Substring(@List,Charindex(@SplitOn,@List)+len(@SplitOn),len(@List))
End
    Insert Into @RtnValue (Value)
    Select Value = ltrim(rtrim(@List))
    Return
END

--below is the dynamic solution for this problem
declare @sql nvarchar(3000) = 'select *'
declare @cnt int = 1
declare @rowNum int = (select max(a) from (select(select max(id) as id_max from dbo.so_split(mul_query,'*')) as a from #test) as b)

while(@cnt <= @rowNum)
begin
    set @sql = @sql + N', ISNULL((select value from dbo.so_split(mul_query,''*'') where id = '+cast(@cnt as nvarchar(5))+N'),''1'')'
    set @cnt = @cnt + 1
end

set @sql = @sql + N' from #test'

exec sp_executesql @sql

Wynik znajduje się poniżej.



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Kopiowanie pakietów SSIS wdrożonych na SQL Server z powrotem do Visual Studio 2008

  2. Uzyskaj właściwą część ciągu w SQL Server (T-SQL)

  3. Jak przekonwertować hh:mm:ss na sekundy w SQL Server z ponad 24 godzinami?

  4. Jaki jest powód użycia kontekstu Transakcji przez inną sesję?

  5. Pliki FILESTREAM pozostają po usunięciu wiersza