[퀘스트] 이제 좀 벌었으니 flex 한 번 해볼까요?!

전민정·2025년 4월 30일

SQL 퀘스트

> 정답

  1. select product_name, price
    from products;
  2. select *
    from products
    where products_name like '%프로%';
  3. select *
    from products
    where products_name like '갤%';
  4. select sum(price) as total_price
    from products;

0개의 댓글