[SQL] 테이블 기획

정예은·2020년 1월 20일
0

web

목록 보기
24/27

테이블 기획

  • Product table 생성

스크린샷 2020-01-20 오후 3.29.17.png

  • Category table 생성

스크린샷 2020-01-20 오후 3.29.28.png

  • 데이터 추가 쿼리

스크린샷 2020-01-20 오후 3.29.45.png

  • 수정 쿼리

스크린샷 2020-01-20 오후 3.30.07.png

  • 삭제 쿼리

스크린샷 2020-01-20 오후 3.30.23.png

  • 상품리스트 쿼리
SELECT s_category.category, shopping.img, shopping.title, shopping.price, shopping.sale, shopping.reviewCount, shopping.likeCount, shopping.shoppingCount, shopping.etc
FROM shopping
LEFT JOIN s_category
ON shopping.category = s_category.id

스크린샷 2020-01-20 오후 3.30.33.png

  • 인기순 정렬 쿼리
SELECT s_category.category, shopping.img, shopping.title, shopping.price, shopping.buy_count, shopping.sale, shopping.reviewCount, shopping.likeCount, shopping.shoppingCount, shopping.etc
FROM shopping
LEFT JOIN s_category
ON shopping.category = s_category.id
order by buy_count DESC;

스크린샷 2020-01-20 오후 3.30.49.png

  • 오픈순 정렬 쿼리
SELECT s_category.category, shopping.img, shopping.title, shopping.price, shopping.openDate, shopping.sale, shopping.reviewCount, shopping.likeCount, shopping.shoppingCount, shopping.etc
FROM shopping
LEFT JOIN s_category
ON shopping.category = s_category.id
order by openDate DESC;

스크린샷 2020-01-20 오후 3.31.08.png

0개의 댓글