J
juliaisabel
It seems that this is really similar to several other questions posed, but
I'm going to pose it anyway because I don't see an answer that fits my
question just right.
I have 2 tables. 1 table is Master Company List - where each company is
defined by a broker id. This table is linked by the broker id to the master
property listing table which contains a field for the date the property was
added. In the Master Company list there are about 75 records, in the Master
Property Listing there are about 3000 records, each Company has several
hundred properties associated.
What I am trying to do is to display the company name along with the most
recent date a property was added. So far this is what my query looks like,
it is (clearly) missing the piece to filter for only most recent date.
SELECT [Master Company List].Name, [MASTER LISTINGS WITH BROKER
ID].property_date_added
FROM [Master Company List] INNER JOIN [MASTER LISTINGS WITH BROKER ID] ON
[Master Company List].[Broker ID] = [MASTER LISTINGS WITH BROKER ID].[Broker
Number];
I'm going to pose it anyway because I don't see an answer that fits my
question just right.
I have 2 tables. 1 table is Master Company List - where each company is
defined by a broker id. This table is linked by the broker id to the master
property listing table which contains a field for the date the property was
added. In the Master Company list there are about 75 records, in the Master
Property Listing there are about 3000 records, each Company has several
hundred properties associated.
What I am trying to do is to display the company name along with the most
recent date a property was added. So far this is what my query looks like,
it is (clearly) missing the piece to filter for only most recent date.
SELECT [Master Company List].Name, [MASTER LISTINGS WITH BROKER
ID].property_date_added
FROM [Master Company List] INNER JOIN [MASTER LISTINGS WITH BROKER ID] ON
[Master Company List].[Broker ID] = [MASTER LISTINGS WITH BROKER ID].[Broker
Number];