SQLのIN句
code:sql
where country in('Australia','Japan','Spain');
複数のORの略記
ここにsubqueryも書ける
WHERE .. IN (SELECT .. FROM ..)