📅  最后修改于: 2022-03-11 15:05:16.044000             🧑  作者: Mango
#to check eif id is even
select city from station where mod(id,2) = 0;
#to check eif id is odd
select city from station where mod(id,2) <> 0;