Question #155

Author: admin
tags: SQL  
Table tags:
id    name
==============
1     rust
2     java
3     php
4     ruby
5     scala
6     kotlin
Any of these SQL queries:
SELECT * FROM tags WHERE mod(id, 2) = 0;
SELECT * FROM tags WHERE id % 2 = 0;
will select:
2     java
2     java
4     ruby
6     kotlin
1     rust
3     php
5     scala
3     php
4     ruby
5     scala
6     kotlin
Rate the difficulty of the question:
easyhard