I have attached a spreadsheet illustrating what I am trying to achieve with the desired query result. I know how to check if a record has rows in multiple tables and return the different row counts from the tables a rows using.
SELECT COUNT(*) AS Count1FROM Table1UNION ALLSELECT COUNT(*) AS Count2FROM Table2UNION ALLSELECT COUNT(*) AS Count3FROM Table3UNION ALLSELECT COUNT(*) AS Count4FROM Table4UNION ALLSELECT COUNT(*) AS Count5FROM Table5