This should work for a SQL Server database:
Code:
SELECT * FROM YourTable
WHERE DateField > (GetDate() - 2)
Or if you have an Access database then this should work:
Code:
SELECT * FROM YourTable
WHERE DateField > (Date() - 2)
I hope that helps.
Regards
Owain Williams