I have 2 table that have table counts in them. Something like Table 1:
New_Counts
100
Table 2:
Old_Counts
97
I want to create a single QC table so I can eventually check that the counts are increasing:
New_Counts|Old_Counts
100|97
Any ideas how to do this in SQL? A join won't work since the counts are never the same.