Table - productsidproduct_namepricecategory1맥북 프로1200컴퓨터2다이슨 청소기300생활가전3럭시탭600컴퓨터4드롱기 커피머신200주방가더보기5.products 테이블에서 제품 이름(product_name)과 가격(price)만을 선택하는 쿼리를 작성해주세요.select product_name, pricefrom products6.products 테이블에서 제품 이름에 '프로'가 포함된 모든 제품을 선택하는 쿼리를 작성해주세요.select *from productswhere product_name like '%프로%'7.products 테이블에서 제품 이름이 '갤'로 시작하는 모든 제품을 선택하는 쿼리를 작성해주세요.select *from productswhere pr..