-
[SQL] data.world tutorial SQL WITH 문 예제 풀이데이터 분석/DB & SQL 2020. 5. 3. 17:22
WITH is a keyword that enables you to form complex queries out of simple named subqueries. WITH 는 복잡한 쿼리를 단순한 이름의 subquery 로 구성하게 해주는 키워드이다. https://docs.data.world/documentation/sql/concepts/advanced/WITH.html WITH Learn about WITH subqueries in this SQL tutorial. Visit for a full course on learning the basics of SQL. docs.data.world With the way our dataset is structured we can see a lot of in..
-
[SQL] data.world tutorial SQL CAST 예제 풀이데이터 분석/DB & SQL 2020. 5. 2. 18:57
CAST: 데이터타입 과 데이터타입 변환 어떤 값이 저장되어있고, 어떻게 데이터타입이 정의되었는지는 매우 중요하다. 이에 따라 연산을 할 것인지, substring 처리할 것인지 등이 달라지기 때문이다. https://docs.data.world/documentation/sql/concepts/intermediate/CAST.html CAST Learn about the CAST clause and related keywords in this SQL tutorial. Visit for a full course on learning the basics of SQL. docs.data.world CAST 1줄 정리 CAST is an expression that is used to change the dat..
-
[SQL] data.world tutorial SQL CASE 예제 풀이데이터 분석/DB & SQL 2020. 5. 2. 18:12
컬럼에 대해서 CASE 분기 태울 때 활용한다. https://docs.data.world/documentation/sql/concepts/intermediate/CASE.html CASE Learn about the CASE expression in this SQL tutorial. Visit for a full course on learning the basics of SQL. docs.data.world CASE 의 활용 CASE is a general conditional expression that allows you to - test data for equality with a specified value, 특정값과 동치여부 확인 - partition data into ranges, 데이터를 ..
-
[SQL] data.world tutorial SQL UNION 예제 풀이데이터 분석/DB & SQL 2020. 5. 1. 12:52
데이터 소스를 붙이는 방법은 column 과 row 기준이 있다. - column 추가: JOIN - row: UNION 그리고 이 포스트는 UNION 그리고 INTERSECT, MINUS 집합 개념에 대해 정리하였다. UNION 에 대한 1줄 정리. A UNION stacks all the resulting rows from one table on top of all the resulting rows from another table. The columns used must have the same names and data types in order for UNION to work. UNION 은 한 테이블의 결과 위에 다른 테이블의 결과를 쌓는 것이다. 컬럼명과 데이터타입이 같아야만 한다. 1. 요..
-
[SQL] data.world tutorial SQL GROUP BY FILTER, HAVING 예제 풀이데이터 분석/DB & SQL 2020. 5. 1. 12:42
GROUP BY 집계를 더 세련되게 하기 위해서 https://docs.data.world/documentation/sql/concepts/intermediate/GROUP_BY.html GROUP BY and FILTER Learn about GROUP BY and FILTER in this SQL tutorial. Visit for a full course on learning the basics of SQL. docs.data.world Filter 에 대한 1 줄 정리 refine your query by running your aggregations against a limited set of the values in a column you could use the FILTER keyword. ..
-
[SQL] data.world tutorial SQL GROUP BY 예제 풀이데이터 분석/DB & SQL 2020. 5. 1. 11:53
GROUP BY 쿼리 니즈에서 Aggregation 과 함께 많이 쓰이는 Group By clauses https://docs.data.world/documentation/sql/concepts/intermediate/GROUP_BY.html GROUP BY and FILTER Learn about GROUP BY and FILTER in this SQL tutorial. Visit for a full course on learning the basics of SQL. docs.data.world GROUP BY 의 원리 1줄 정리 GROUP BY enables you to use aggregate functions on groups of data returned from a query. GROUP BY..
-
[SQL] data.world tutorial SQL Aggregatio 예제 풀이데이터 분석/DB & SQL 2020. 5. 1. 10:14
역시 데이터는 row 도 중요하지만 집계도 중요하다. 이 글은 data.world 의 Aggregation 튜토리얼 예시에 대한 풀이이다. [링크] Aggregations Learn about aggregations, aggregation function and aggregation modifiers in this SQL tutorial. Visit for a full course on learning the basics of SQL. docs.data.world Aggregation 에 대한 1줄 정리 An aggregation is the result returned from running an aggregate function in a query and is displayed in a new col..
-
[SQL] data.world tutorial SQL SELF JOIN 예제 풀이데이터 분석/DB & SQL 2020. 5. 1. 08:49
SELF JOIN 나는 업무하면서 SELF JOIN 을 써보지는 못했다. 하지만 원리상 언젠가는 필요할테니까 살펴보자. https://docs.data.world/documentation/sql/concepts/intermediate/Joins.html Joins Learn how to JOIN multiple tables in this SQL tutorial. Visit for a full course on learning the basics of SQL. docs.data.world SELF JOIN 의 원리 1줄 정리 A self join is useful when a table has the values from one column re-used in another column. 한 테이블의 값이..