I have 2 tables, contact and search. 'Contact' has the contact's id and companyid where he works at. 'Search' has the contactid and the companyid he belongs to cos' a contact can work at 2 companies. It also has the last time a contact searched the database. cityid corresponds to the city he worked in.
I am looking for every uniquely identified contact's lastsearchdate. How do I get the desired output?
create table contact (id integer primary key auto_increment, companyid integer, contactid integer, unique key(companyid, contactid));
insert into contact (companyid, contactid) values (1,1), (1,2), (2,3);
contact:
id companyid contactid
1 1 1
2 1 2
3 2 3
create table search (searchid integer primary key auto_increment, companyid integer, contactid integer, cityid integer, lastsearchdate date);
insert into search (companyid, contactid, cityid, lastsearchdate) values (1,1,1,'2012-03-01'), (1,1,2,'2012-04-16'), (2,3,3,'2012-04-01'), (1,1,1,'2012-03-07'), (2,3,4,'2012-04-10'), (1,2,1,'2012-04-01');
search:
searchid companyid contactid cityid lastsearchdate
1 1 1 1 2012-03-01
2 1 1 2 2012-04-16
3 2 3 3 2012-04-01
4 1 1 1 2012-03-07
5 2 3 4 2012-04-10
6 1 2 1 2012-04-01
Desired output :
companyid contactid cityid lastsearchdate
1 1 2 2012-04-16
1 2 1 2012-04-01
2 3 4 2012-04-10
Query so far :
select b.companyid, b.contactid, a.cityid, a.lastsearchdate from search a join contact b
on a.companyid = b.companyid and a.contactid = b.contactid
join search c
on a.companyid = c.companyid and a.contactid = c.contactid and a.lastsearchdate > c.lastsearchdate
group by b.companyid, b.contactid;