I have a question regarding the preparation of a SQL query in which I pass a registration date and check if it is larger than the current date, but I have a problem the date of registration is varchar and it follows the format "dd / mm / yyyy ", follow below to select:
SELECT * FROM Evento
WHERE data_evento > curdate()
ORDER BY idEvento ASC LIMIT 0,3;