일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- GridSearchCV
- hackerrank
- 파트5
- 실기
- Quant
- 비트코인
- 코딩테스트
- 빅데이터분석기사
- backtest
- docker
- 프로그래머스
- SQL
- ADP
- randomforest
- 백테스트
- PolynomialFeatures
- 토익스피킹
- 볼린저밴드
- TimeSeries
- 파이썬
- Programmers
- 변동성돌파전략
- 주식
- Crawling
- Python
- 파이썬 주식
- 데이터분석
- sarima
- lstm
- 데이터분석전문가
- Today
- Total
목록SQL (10)
데이터 공부를 기록하는 공간

https://www.hackerrank.com/domains/sql?filters%5Bskills%5D%5B%5D=SQL%20%28Intermediate%29 Solve SQL Code Challenges A special-purpose language designed for managing data held in a relational database. www.hackerrank.com intermediate ☆Binary Tree Nodes select N, case when P is null then "Root" when N not in (select distinct P from BST where P is not null) then "Leaf" else "Inner" end from BST ord..

HACKERRANK _ SQL https://www.hackerrank.com/domains/sql?filters%5Bskills%5D%5B%5D=SQL%20%28Basic%29 Solve SQL Code Challenges A special-purpose language designed for managing data held in a relational database. www.hackerrank.com SKILLS (BASIC / INTERMEDIATE / Advanced ) 中 BASIC ! Revising the Select Query I select * from CITY where POPULATION > 100000 and COUNTRYCODE = "USA" Revising the Select..

코드카데미(codecademy) SQL 연습해보기 https://www.codecademy.com/courses/learn-sql/lessons/manipulation/exercises/manipulation-review Cheating Sheet https://www.codecademy.com/learn/learn-sql/modules/learn-sql-manipulation/cheatsheet LESSON 1 Manipulation CREATE TABLE CREATE TABLE celebs ( id INTEGER, name TEXT, age INTEGER ); INSERT TABLE INSERT INTO celebs (id, name, age) VALUES (1, 'Justin Bieber', 22)..

■ 코드카데미(codecademy) SQL 연습해보기 https://www.codecademy.com/courses/learn-sql/lessons/multiple-tables/exercises/generalizations-multiple-tables ■ Cheating Sheets https://www.codecademy.com/learn/learn-sql/modules/learn-sql-multiple-tables/cheatsheet LESSON 4 : MULTIPLE TABLES JOIN (= Inner Join, 교집합) SELECT * FROM books JOIN authors ON books.author_id = authors.id; LEFT JOIN (= Outer Join) SELECT c..