일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 자연어처리
- CBOW
- 신경망
- DeepLearning
- affine
- algorithm
- skip-gram
- Numpy
- Heap
- Stack
- stak
- Word2vec
- select
- PPMI
- backward
- dl
- kakao
- 딥러닝
- Programmers
- FullyConnectedLayer
- Sigmoid
- 프로그래머스
- boj
- hash
- que
- Python
- 파이썬
- MySQL
- SQL
- sort
Archives
- Today
- Total
혜온의 이것저것
[Programmers] SQL 고득점 kit select - 조건에 부합하는 중고거래 댓글 조회하기 (mysql) 본문
Data Analysis/SQL
[Programmers] SQL 고득점 kit select - 조건에 부합하는 중고거래 댓글 조회하기 (mysql)
혜온 :) 2023. 4. 10. 15:11https://school.programmers.co.kr/learn/courses/30/lessons/164673
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
SELECT b.title, b.board_id, r.reply_id, r.writer_id, r.contents, date_format(r.created_date,'%Y-%m-%d') created_date
from used_goods_board b, used_goods_reply r
where b.board_id = r.board_id
and year(b.created_date)=2022
and month(b.created_date)=10
order by r.created_date, b.title
'Data Analysis > SQL' 카테고리의 다른 글
[Programmers] SQL 고득점 kit select - 인기있는 아이스크림 (mysql)D (0) | 2023.04.10 |
---|---|
[Programmers] SQL 고득점 kit select - 서울에 위치한 식당 목록 출력하기 (mysql) (0) | 2023.04.10 |
[Programmers] SQL 고득점 kit select - 인기있는 아이스크림 (mysql) (0) | 2023.04.06 |
[Programmers] SQL 고득점 kit select - 평균 일일 대여 요금 구하기 (mysql) (0) | 2023.04.06 |
[Programmers] SQL 고득점 kit select - 흉부외과 또는 일반외과 의사 목록 출력하기 (mysql) (0) | 2023.04.06 |