Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

SQL Server - Incluir NULL usando UNPIVOT


Para preservar NULLs, use CROSS JOIN ... CASE:
select a.ID, b.column_name
, column_value = 
    case b.column_name
      when 'col1' then a.col1
      when 'col2' then a.col2
      when 'col3' then a.col3
      when 'col4' then a.col4
    end
from (
  select ID, col1, col2, col3, col4 
  from table1
  ) a
cross join (
  select 'col1' union all
  select 'col2' union all
  select 'col3' union all
  select 'col4'
  ) b (column_name)

Ao invés de:
select ID, column_name, column_value
From (
  select ID, col1, col2, col3, col4
  from table1
  ) a
unpivot (
  column_value FOR column_name IN (
    col1, col2, col3, col4)
  ) b

Um editor de texto com modo de coluna torna essas consultas mais fáceis de escrever. UltraEdit tem, assim como o Emacs. No Emacs é chamado de edição retangular.

Talvez seja necessário criar um script para 100 colunas.