๋ฐ์ดํฐ๋ฆฌ์์ ๊ฐ์๋ฅผ ๊ธฐํํฉ๋๋ค.
๊ธฐํ ๊ฐ์
1. [๊ฐ๋ ๋ถํฐ ์ค์ต๊น์ง] ์ถ์ฒ ์์คํ ์ ๋ฌธํธ2. [๋ฐฑ๋ฌธ์ด๋ถ์ฌ์ผํ] ๋ฐ์ดํฐ ๋ถ์์ ์ํ ์ค๊ธ SQL ๋ฌธ์ ํ์ด
3. [๋ฐฑ๋ฌธ์ด๋ถ์ฌ์ผํ] ๋ฐ์ดํฐ ๋ถ์์ ์ํ ๊ณ ๊ธ SQL ๋ฌธ์ ํ์ด
4. ๊ณต์ ๋ฌธ์๋ก ๋ฐฐ์ฐ๋ ํ๋ค์ค(Pandas)
Courses
Reviews
cc93390605
ยท
[A hundred words are not as good as seeing once] Intermediate SQL problem solving for data analysis[A hundred words are not as good as seeing once] Intermediate SQL problem solving for data analysislifeisone
ยท
[A hundred words are not as good as seeing once] Intermediate SQL problem solving for data analysis[A hundred words are not as good as seeing once] Intermediate SQL problem solving for data analysissaza50000693
ยท
[A hundred words are not as good as seeing once] Intermediate SQL problem solving for data analysis[A hundred words are not as good as seeing once] Intermediate SQL problem solving for data analysishidongmin37
ยท
[A hundred words are not as good as seeing once] Intermediate SQL problem solving for data analysis[A hundred words are not as good as seeing once] Intermediate SQL problem solving for data analysisiamsonmac
ยท
[A hundred words are not as good as seeing once] Advanced SQL problem solving for data analysis[A hundred words are not as good as seeing once] Advanced SQL problem solving for data analysis
Posts
Q&A
air_quality.mean()
Pandas๊ฐ 2.0 ๋ฒ์ ์ผ๋ก ์ ๋ฐ์ดํธ๋๋ฉฐ(2023๋ ) ์ซ์ ๋ฐ์ดํฐ๊ฐ ์๋ ์ปฌ๋ผ์ด ํฌํจ๋ ๋ฐ์ดํฐํ๋ ์์ ๋ฐ๋ก ์ง๊ณํจ์๋ฅผ ์ ์ฉํ๋ฉด ์๋ฌ๋ฅผ ๋ด๋ ๋์์ผ๋ก ๋ณ๊ฒฝ์ด ๋์๋ค์. (์ถ์ฒ: Welcoming pandas 2.0์ Behavior change in numeric_only for aggregation functions ํํธ)๊ฐ์๋ 1.0 ๊ธฐ๋ฐ์ผ๋ก ์ดฌ์๋ ๊ฒ์ด๋ผ ํผ๋์ ๋๋ฆฐ ๊ฒ ๊ฐ์ต๋๋ค. ๊ฐ์ ์์ ์๋์๋ ๋ด์ฉ ์ถ๊ฐํด ๋๊ฒ ์ต๋๋ค. ๊ฐ์ฌํฉ๋๋ค.
- 0
- 2
- 18
Q&A
Weather Observation Station 6 ์ฟผ๋ฆฌ๊ฐ ํ๋ ธ๋ค๊ณ ๋์ค๋ ์ด์ ๋ฅผ ๋ชจ๋ฅด๊ฒ ์ด์
WHERE city LIKE 'a%' OR city LIKE 'e%' OR city LIKE 'i%' OR city LIKE 'o%' OR city LIKE 'u%'์์ ๊ฐ์ด OR๋ก ์ฐ๊ฒฐ๋ ๋ชจ๋ ์กฐ๊ฑด์ 'city' ์ปฌ๋ผ๋ช ์ ์ ์ด์ 'city ๊ฐ์ด e๋ก ์์ํ๋ ๋ฐ์ดํฐ'๋ผ๋ ์๋ฏธ๋ฅผ ํ์คํ ํ๋ ๊ตฌ๋ฌธ์ผ๋ก ์์ฑํด์ผ ํฉ๋๋ค.
- 0
- 1
- 20
Q&A
16๊ฐ LEFT JOIN ๋ฆฌํธ์ฝ๋ (183. Customers Who Never Order) ๊ด๋ จ ์ง๋ฌธ
FROM customers as c LEFT JOIN orders o ON c.id = o.customerid์ LEFT JOIN ์กฐ๊ฑด์ ๋ฐ๋ฅด๋ฉด c.id์ ์ผ์นํ๋ ๊ฐ์ด o.customerid์ ์์ ๊ฒฝ์ฐ orders์ ์ด๋ค ํ๋ ์กฐ์ธ๋ ์ ์๊ธฐ ๋๋ฌธ์, ์กฐ์ธ ํ ํ ์ด๋ธ ํํ์์ orders์ ๋ชจ๋ ์ปฌ๋ผ์ด null์ด ๋ฉ๋๋ค.๊ทธ๋ฌ๋ฏ๋ก o.id IS NULL๋ก ํํฐ๋งํ๋ ๊ฒ๊ณผ o.customerid IS NULL๋ก ํํฐ๋งํ๋ ๊ฒ์ ๊ฐ์ ๊ฒฐ๊ณผ๋ฅผ ๋ฐํํฉ๋๋ค. ๋ ์ค ์ด๋ค ์กฐ๊ฑด์ผ๋ก ์์ฑํด๋ ์๊ด ์์ต๋๋ค.
- 0
- 2
- 22
Q&A
HackerRank ์งํ ๋์์ฃผ์ธ์
์ด๋ค ๋ถ๋ถ์์ ๋งํ์๋ ๊ฑธ๊น์? ๋ฌด์์ ํ๋ ๊ณผ์ ์์ ์ด๋ ค์์ด ์์ผ์ ์ง ํ๋ฉด ์บก์ณ ์ด๋ฏธ์ง์ ํจ๊ป ์์ธํ ์๋ ค์ฃผ์๋ฉด ๋์๋๋ฆฌ๊ฒ ์ต๋๋ค.
- 0
- 2
- 42
Q&A
HACKER RANK์์ ๋ฌธ์ ์ฐพ๊ธฐ
๋ธ๋ผ์ฐ์ ํ์ด์ง ์ค์ ๋ฌธ์ ์ผ ๊ฐ๋ฅ์ฑ์ด ๊ฐ์ฅ ์ปค ๋ณด์ด๋ ์ด ๋ถ๋ถ์ ์กฐ์ ํด ๋ณด์๊ธธ ๋ฐ๋๋๋ค.์ค์ต ํ๊ฒฝ์ด ๊ฐ์ ๋ค๋ฅด๊ธฐ ๋๋ฌธ์ ์ ํฌ๊ฐ ์ ํํ ๋ต๋ณ์ ๋๋ฆด ์ ์๋ ๋ถ๋ถ์ด ์๋ ์ ์ํด ๋ฐ๋๋๋ค.
- 0
- 2
- 49
Q&A
์๋ ํ์ธ์ ์ง๋ฌธ๋๋ฆฝ๋๋ค.
ํด๋น ๊ฐ์๋ MySQL ๊ธฐ์ค์ผ๋ก ๊ตฌ์ฑ๋์ด ์์ต๋๋ค.์ด๋ค DBMS์์๋ ๊ณตํต์ ์ผ๋ก ์ ๊ณตํ๋ ํจ์๋ ๋ค๋ฃจ๊ณ ์์ผ๋ Oracle์์๋ง ๊ฐ๋ฅํ ๊ธฐ๋ฅ์ ๋ํ ๋ด์ฉ์ ํฌํจํ์ง ์์ต๋๋ค.
- 0
- 2
- 32
Q&A
Weather Observation Station 12์์ Wrong Answer์ด ๋น๋๋ค.
์ฐ์ธก ์๋จ์ DBMS๊ฐ DB2๋ก ๋์ด์๋๋ฐ MySQL๋ก ๋ณ๊ฒฝ ํ ์ฌ์๋ํด ๋ณด์๊ธธ ๋ฐ๋๋๋ค.
- 0
- 2
- 37
Q&A
๊ฐ์ ์๋ฃ ๋ค์ด๋ก๋
๊ฐ์ ์ฌ๋ผ์ด๋ ์๋ฃ ๋ง์ํ์๋ ๊ฑด๊ฐ์? ์ด, ์ค๊ธ์ ๊ฒฝ์ฐ ๋ฐ๋ก ์ ๊ณตํ๊ณ ์์ง ์์ต๋๋ค.
- 0
- 2
- 39
Q&A
Asian population ๋ฌธ์ ๊ฐ ์์ด์
๋ฌธ์ ๋ช ์นญ์ด Population Census๋ก ๋ณ๊ฒฝ๋์์ต๋๋ค.INNER JOIN ํด์ปค๋ญํฌ ๋ฌธ์ ํ์ด ์์ ์๋ ์์ ๋ ธํธ์๋ ์๋ด๋์ด ์์ผ๋ ์ฐธ๊ณ ๋ฐ๋๋๋ค.
- 0
- 2
- 48
Q&A
INNER JOIN ์์ A.ํค ์ธ๋ ๋นจ๊ฐ ์ ๋์ค๊ณ 'dause'
(์ฌ์ง)๋ง์ํ์ ๊ฒ์ฒ๋ผ ํ ์ด๋ธ๋ช .์ปฌ๋ผ๋ช ์์ ์ปฌ๋ผ๋ช ๋ถ๋ถ์ด ๋นจ๊ฐ ๊ธ์จ๋ก ์ ๋ ฅ๋๊ธด ํ์ง๋ง ์คํํ๋ ๋ฐ์๋ ๋ฌธ์ ์๋ ๊ฒ ๊ฐ์ต๋๋ค. ์ค๋ฅ๊ฐ ๋ ์ํฉ์ ์ฟผ๋ฆฌ์ ๊ฒฐ๊ณผ ์คํฌ๋ฆฐ์ท์ ํจ๊ป ์ฌ๋ ค ์ฃผ์๋ฉด ์์ธ ํ์ ๋์๋๋ฆฌ๊ฒ ์ต๋๋ค.
- 0
- 2
- 33