select count(1)
from food_orders cnt_orders
where price>=30000
이 sql 문중에서 count(distinct customer_id나 order_id가 아닌 count(1)를 넣어도 동일한 값이 나오는게 잘 이해가 가지 않습니다. count(1)이 세는기준이 정확히어떤건가요?