Puoi utilizzare STR_TO_DATE()
funzione
SELECT id, date
FROM tableName
WHERE STR_TO_DATE(date,'%Y-%m-%d') >= '01/01/2012'
ORDER BY date DESC;
Anche se sospetto che ti divertirai più facilmente con Unix Timestamps
SELECT id, date
FROM tableName
WHERE UNIX_TIMESTAMP(STR_TO_DATE(date,'%d/%m/%Y')) >= UNIX_TIMESTAMP('01/01/2012')
ORDER BY date DESC;