SQL 연습문제 6-1 상품정보(products) 테이블에서 상품의 id, 상품명(name), 판매가격(retail_price)를 조회합니다. 판매가격은 소수점 2자리에서 반올림 합니다. SELECT id, name, ROUND(retail_price, 2) AS RETAIL_PRICE FROM `thelook_ecommerce.products` SQL 연습문제 6-2 회원(users) 테이블에서 나이가 홀수인 유저만 조회하세요. 조회 항목은 id, first_name, last_name, age 입니다. SELECT id, first_name, last_name, age FROM `thelook_ecommerce.users` WHERE MOD(age, 2) = 1 -> WHERE 잊지마 SQL 연습문제..