I have a table structure like that as shown below. I want to show names under parent of names (where parent is ledger group)


I have a table structure like that as shown below. I want to show names under parent of names (where parent is ledger group)


DECLARE @t1 TABLE
(
ParentGroup varchar(20),
LedgerName varchar(20),
TotalDebit float,
credit float
)
INSERT INTO @t1
SELECT *
FROM Table1
INSERT INTO @t1
SELECT Distinct ParentGroup, ParentGroup, NULL, NULL
FROM Table1
Select LedgerName, TotalDebit, credit from @t1
group by LedgerName, TotalDebit, credit
ORDER BY (CASE WHEN TotalDebit IS NULL THEN 0 ELSE TotalDebit END)