Hi,
I am trying to build a list of all emails that have been sent in the past 3 months with the reference “Confirmation of Debt Subm” and createdby = Admin and key1 =SGPDC
I thought to do this i should input the following:
[highlight #E9B96E]SELECT ContHist.Ref,ContHist.Createby, ContHist.Createon, Contact1.Key1
FROM ContHist, Contact1
WHERE Ref LIKE 'Confirmation%' AND ContHist.Createby = 'Admin' AND Contact1.Key1 = 'SGPDC'AND ContHist.Createon >= 25/10/12
ORDER BY Createon[/highlight]
It does produce a list However it is a incorrect list; its is showing CreateOn dates from 2009 and there is hundreds of Duplicates.
Can anyone please help???
Any help with this would be very much appreciated.
Thank You
Mark
I am trying to build a list of all emails that have been sent in the past 3 months with the reference “Confirmation of Debt Subm” and createdby = Admin and key1 =SGPDC
I thought to do this i should input the following:
[highlight #E9B96E]SELECT ContHist.Ref,ContHist.Createby, ContHist.Createon, Contact1.Key1
FROM ContHist, Contact1
WHERE Ref LIKE 'Confirmation%' AND ContHist.Createby = 'Admin' AND Contact1.Key1 = 'SGPDC'AND ContHist.Createon >= 25/10/12
ORDER BY Createon[/highlight]
It does produce a list However it is a incorrect list; its is showing CreateOn dates from 2009 and there is hundreds of Duplicates.
Can anyone please help???
Any help with this would be very much appreciated.
Thank You
Mark