Syntax: Conditionals in SQL. • ID: #63 Code SELECT CASE WHEN 10%2=0 THEN 'even' ELSE 'odd' END AS parity; Notes You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests. ← Prev Next →