how to check even or odd in sql

Solutions on MaxInterview for how to check even or odd in sql by the best coders in the world

showing results for - "how to check even or odd in sql"
Rafaela
30 Jan 2017
1SELECT * 
2FROM table_name 
3WHERE mod(column_name,2) = 0;