Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Query di SQL Server per nascondere i dati della colonna delle righe duplicate. Non voglio rimuovere una riga duplicata

Sembra una soluzione pazzesca, ma puoi ottenerla usando la funzione con finestra ROW_NUMBER() e utilizzando CASE controllo dell'espressione se il numero di riga è maggiore di 1, qualcosa del tipo:

select 
    [Vch No.],
    [Vch Type],
    case when rn > 1 then '' else [Vch Ref] end as [Vch Ref],
    case when rn > 1 then '' else [Date] end as [Date],
    case when rn > 1 then '' else [Party Name] end as [Party Name],
    case when rn > 1 then '' else [Sales Ledger] end as [Sales Ledger],
    case when rn > 1 then '' else [Amt] end as [Amt],
    [GST Ledger],
    [TaxAmount],
    case when rn > 1 then '' else [Total] end as [Total]
from (  
    select 
        [Vch No.],
        [Vch Type],
        [Vch Ref],
        [Date],
        [Party Name],
        [Sales Ledger],
        [Amt],
        [GST Ledger],
        [TaxAmount],
        [Total], 
        row_number() over (partition by [Vch No.],[Vch Type],[Vch Ref],[Date],[Party Name],[Sales Ledger],[Amt],[GST Ledger],[TaxAmount],[Total] order by [Vch No.]) rn
    from [AccountData]
)x

Guarda i tipi di dati, se c'è Amt è INT dovresti convertirlo in stringa se vuoi ottenere un valore vuoto.