오늘 배운 내용SQL 5주차 강의 null 문법coalesce로 대체 가능SELECT...coalesce(b.age, 20) "null 제거", ...FROM food_orders a left join customers b on a.customer_id=b.customer_id WHERE b.age is null데이터 값이 상식적이지 않은 경우ex ) 70년대 카드 결제, 2세가 음식 주문 등등..> 조건문으로 값의 범위를 지정한다SELECT customer_id, name, email, gendor, age, case when agewhen age>80 then 80 else age end "범위를 지정해준 age" FROM customers데이터베이스 생성 후 피봇테이블 생성행축 먼저window 함..