Pivot Method Table Column Differences Test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET STATISTICS IO, TIME ON; | |
GO | |
SELECT Pivot1.ColumnName, | |
Pivot1.[dbo.TableColumnDifference01], | |
Pivot1.[dbo.TableColumnDifference02], | |
CASE WHEN [dbo.TableColumnDifference01] = 1 AND [dbo.TableColumnDifference02] = 1 | |
THEN 'Both' | |
WHEN [dbo.TableColumnDifference01] = 1 AND [dbo.TableColumnDifference02] IS NULL | |
THEN 'Table 1 only' | |
WHEN [dbo.TableColumnDifference01] IS NULL AND [dbo.TableColumnDifference02] = 1 | |
THEN 'Table 2 only' | |
ELSE 'Eh...this should not really happen' | |
END AS HumanReadableFormat | |
FROM ( SELECT | |
c.[name] AS ColumnName, | |
tb.TableName, | |
1 AS ColumnExists | |
FROM sys.columns AS c | |
RIGHT JOIN ( VALUES | |
(OBJECT_ID(N'dbo.TableColumnDifference01', N'U'), 'dbo.TableColumnDifference01'), | |
(OBJECT_ID(N'dbo.TableColumnDifference02', N'U'), 'dbo.TableColumnDifference02') | |
) AS tb (ObjectID, TableName) | |
ON c.object_id = tb.ObjectID | |
) AS UnPivotedColumns | |
PIVOT ( | |
MAX(ColumnExists) FOR TableName IN ([dbo.TableColumnDifference01], [dbo.TableColumnDifference02]) | |
) AS Pivot1 | |
ORDER BY Pivot1.ColumnName ASC; | |
GO | |
SET STATISTICS IO, TIME OFF; | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment