G
George Stevenson
I've got a table of property with owner names that are in random order. 1
owner can own multiple properties.
I'd like create a list of owners with the count of the number of properties
for each owner.
I'm struggling with the SQL Select to do this, could someone help me out?
The following select statment only lists the single number of owners, not a
list of owners and the number of properties for each one.
SELECT count(*)
FROM [SELECT proptest.Owner1 FROM proptest ORDER BY owner1]. AS owner1;
owner can own multiple properties.
I'd like create a list of owners with the count of the number of properties
for each owner.
I'm struggling with the SQL Select to do this, could someone help me out?
The following select statment only lists the single number of owners, not a
list of owners and the number of properties for each one.
SELECT count(*)
FROM [SELECT proptest.Owner1 FROM proptest ORDER BY owner1]. AS owner1;