-
[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. 한 테이블의 값이..
-
[SQL] data.world tutorial SQL OUTER JOIN 예제 풀이데이터 분석/DB & SQL 2020. 4. 30. 10:48
OUTER JOIN 은 언제나 조금 어색하다. 사실 비즈니스에서는 INNER JOIN 을 훨씬 많이 쓰기 때문. 이번 기회에 정리하면서 OUTER 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 OUTER JOIN 의 원리 1줄 정리 There are, however, times when you might want to return all the..
-
[SQL] data.world tutorial SQL INNER JOIN 예제 풀이데이터 분석/DB & SQL 2020. 4. 26. 16:49
손이 움직이기 전에 머리를 써야 한다. 쿼리를 작성하기 전에 확인해야 될 절차를 나누어서 서술해보았다. 여러 테이블을 JOIN 해서 쿼리할 수 있다면 쿼리 입문 딱지는 떼도 좋을 것. JOIN 에 익숙해지기 전에 좋은 쿼리 습관을 들이는 것은 매우 중요하다. 이 글은 data.world 의 INNER JOIN 튜토리얼 예시에 대한 풀이이다. [링크] The SELECT and FROM Clauses Learn about SELECT and FROM in this SQL tutorial. Visit for a full course on learning the basics of SQL. docs.data.world 데이터셋 확인 및 쿼리 질의 모두 아래 링크에서 확인할 수 있다. [링크] SQL CRM Ex..
-
[SQL] 내가 추출하고 싶은 데이터가 여러 테이블이 걸쳐 저장되어 있다면데이터 분석/DB & SQL 2020. 4. 26. 09:41
Working With Joins, Aggregations, and Built-In Functions https://docs.data.world/documentation/sql/concepts/intermediate/intermediate_intro.html 내가 추출하고 싶은 데이터가 여러 테이블이 걸쳐 저장되어있을 때에 필요한 기능에 대한 튜토리얼 서두이다. 왜 이런 작업이 필요한지 너무 간결하게 표현되어 있어서 번역하면서 음미해보고 싶었다. 원문과 번역을 동시에 게재하지만, 그 이하 섹션들이 궁금하다면 클릭해서 직접 보자. :D 이 글을 보고 더 많은 사람들이 데이터를 직접 추출할 수 있는 자신감을 얻기를 바란다. 참고. 번역은 의역본이며, IT 개념을 살릴 필요가 있는 어휘는 본문 내 첫 표기 시..
-
[SQL] 조건문 Where cluase 비교연산 사용법데이터 분석/DB & SQL 2020. 4. 25. 14:09
조건문 Where cluase 은 쿼리 질의결과에서 일부 결과만 필터링할 때 활용한다. 이번 글을 정리하면서 Case Sensitive / Insensitive 에 대해서 명확하게 이해하게 되었다. Mac > Numbers > Column 클릭 > 우측 Filter 탭 기능을 자세히 보게 되었다. =/!= 검색과 LIKE 검색으로 보인다면 성공! = 동치연산자, 그 외 비교연산자 조건문의 기본은 = 동치를 포함한 비교연산자이다. An introduction to the WHERE clause and comparison operators. One way to restrict the data presented from a query is to use a WHERE clause. WHERE is used to..
-
[SQL] SQL 의 modifier: Keyword데이터 분석/DB & SQL 2020. 4. 25. 11:17
ORDER BY clause 의 모든 것. ORDER BY year ASC NULLS FIRST, count DESC NULLS FRIST ORDER BY 와 함께 사용되는 Modifier 는 다음과 같다: ASC (default), DESC, NULLS FIST, NULLS LAST (default) 보라색 단어가 바로 Modifier, 정식 명칭으로는 SQL 이 지정한 Keyword 이다. We can also flip the order of the values returned by ORDER BY by using the modifier DESC There is also a modifier ASC for ordering data. ASC is used in ORDER BY clauses to indi..