How can I print record count from 2 tables by grouping in SQL?
I need a sql query to print the count of records from different table for particular column. I have tried the below but it is not working. SELECT t1.names, COUNT(t1.name) as Table1 count, COUNT(t2.FILENAME) as Table2 count FROM Table1 t1…