1. 이름이 모자인 상품의 모든정보 출력
select * from product where name='모자';
2. 판매자가 kn95인 상품의 모든 정보 출력
select * from product where seller='kn95';
3. 가격이 12000원인 상품의 모든 정보 출력
select * from product where price=12000;
4. 이름이 머그컵인 상품의 이름, 판매자 출력
select name,seller from product where name='머그컵';
5. 판매자가 ws30인 상품의 이름, 가격 출력
select name,price from product where seller='ws30';
6. 10000원보다 비싼 상품의 모든 정보 출력
select * from product where price>10000;
7. 25000원보다 싼 상품의 이름 출력
select name from product where price<25000;
8. 5000~10000원 사이인 상품의 이름, 판매자를 출력
select name,seller from product where price>=5000 and price<=10000;
9. 10000~15000원 사이인 상품의 번호, 이름, 가격 출력
select no,name,price from product where price>=10000 and price<=15000;
10. 8100원 상품과 판매자가 bk93인 상품의 모든 정보 출력
select * from product where price=8100 or seller='bk93';
11. 10000원 이상인 상품과 5000원 이하인 상품의 번호, 이름, 판매자 출력
select no,name,seller from product where price>=10000 or price<=5000;
12. 판매자 이름의 마지막이 4로 끝나는 상품의 번호, 이름, 가격, 판매자 출력
select no,name,price,seller from product where seller like '%4';
13. 상품 이름의 시작이 '디'로 시작하는 상품의 번호 출력
select no from product where name like '디%';
14. 번호가 10번대인 상품의 번호, 판매자 출력
select no,seller from product where no like '1_';
15. 번호가 10번대를 제외한 나머지 상품의 모든 정보 출력
select * from product where no<10 or no>19;
16. 가격이 10000원대 상품 중 판매자의 이름의 마지막이 5로 끝나는 상품의 이름, 가격, 판매자 출력
select name,seller from product where price like '1____' and seller like '%5';
17. 판매자 이름이 yh16 이면서 번호가 20번대인 상품의 이름, 가격 출력
select name,price from product where seller='yh16' and no like '2_';
18. 상품 이름에 '마' 나 '이'가 들어가는 상품 중 가격이 20000원 이상인 상품의 모든 정보 출력
select * from product where price>=20000 and (name like '마%' or name like'이%');
19. 가격이 10000원 이상인 상품 중 번호가 10번대 이거나 번호가 5번보다 아래인 상품의 이름, 가격, 판매자 출력
select name,price,seller from product where price>=10000 and (no>=10 and no<=19 or no<5);
select name,price,seller from product where price>=10000 and (no like '1_' or no<5);
20. 가격이 5000~20000원 사이 상품 중 상품의 이름이 '제'로 끝나면서 판매자 이름이 'ky'로 시작하는 상품의 번호, 이름, 판매자 출력
select no,name,seller from product where (price>=5000 and price<=20000) and name like '%제' and seller like 'ky%';