0
How would you query a table where the id number is an even number?
The query has to output all columns with an even id number.
2 Antworten
+ 2
Olwethu Shezi
Use MOD function in where clause like:
MOD(id, 2) = 0
0
Describe your table structure first. How can anyone help you without knowing the table structure?