Comment vérifier même ou impair dans SQL

SELECT * 
FROM table_name 
WHERE mod(column_name,2) = 0;
arkyyadav001