코트카타SELECT car_type, count(*) `cars`FROM car_rental_company_carWHERE options LIKE '%통풍시트%' or options LIKE '%가죽시트%' or options LIKE'%열선시트%'GROUP BY car_typeORDER BY car_typeIN과 LIKE를 동시에 쓰고 싶을 때는 REGEXP를 사용REGEXP 명령어를 사용후 ' ' 안에 |(or) 기호를 사용ex) #WHERE options REGEXP '통풍시트|열선시트|가죽시트'SELECT a.name, a.datetimeFROM animal_ins a LEFT JOIN animal_outs b on a.animal_id = b.animal_idWHERE b.animal_id is..