I have a table in my MySQL database with, say, following fields:
id, client, date
the type is:
id -> int(20) unsigned, client -> varchar(100), date -> varchar(20)
as data example:
'234', 'John Doe', '08/13'
'112', 'Joanna Doe', '08/12'
I want to select all records that are after today’s date as mm/YY (09/13)
Can somebody help please?
1 Answer