Scenario:
I have 2 tables, Car Table, and Employee Table. Pretty simple tables, both tables however include a location code:
╔════════════════╗ ╔═══════════╗
║ Employee Table ║ ║ Car Table ║
╠════════════════╣ ╠═══════════╣
║ empID ║ ║ CarID ║
║ empName ║ ║ CarName ║
║ LocID ║ ║ LocID ║
╚════════════════╝ ╚═══════════╝
This is to represent Employees working at specific locations, and also shows which vehicles are in the respective locations.
What I am trying to display with this query is a count of each car, and employee GROUPED BY Location ID, for example:

Every time I try a query, it always adds multiple location ids in the query, even though I want to group by it. Is this possible with one query?