카테고리 없음

걷기 2

fns2002 2025. 10. 17. 17:12

select product_name, price

from products

 

select product_name, price,categor

from products

where product name like"%프로%"

 

select product_name, price,categor

from products

where product name like "갤%"

 

select product_name, sum(price) as '합계 금액'

from products