Question
SQL help ?
My table 'voucher_codes' contains a MySQL "voucher_expiry_date" field eg 2010-07-01
I need to devise a select clause that looks for an expired date ie. the date field is either today or earlier
How do I phrase that ?
Select *
From voucher_codes
Where voucher_expiry_date LTE Now()
