본문 바로가기

Programming/Google Data Analytics Certificate19

[GA] Course 5 Sorting on Spreadsheet and SQL 2. SORTING IN SQL SELECT * FROM `onyx-smoke-380601.movie_data.movies` ORDER BY Release_Date DESC -- sorts ascending order in default orderby is always in the last one 2023. 3. 23.
[GA] Google Data Analytics 데이터 Clean 시 마지막 확인 사항 1. Change log 하는 방법 # Changelog This file contains the notable changes to the project Version 1.0.0 (02-23-2019) ## New - Added column classifiers (Date, Time, PerUnitCost, TotalCost, etc. ) - Added Column “AveCost” to track average item cost ## Changes - Changed date format to MM-DD-YYYY - Removal of whitespace (cosmetic) ## Fixes - Fixed misalignment in Column "TotalCost" where some rows did n.. 2023. 3. 22.
[GA] Google Analytics Certificate Program (GA Day) Course 4 SQL basic queries - to add: insert into INSERT INTO customer.data_customer_address (customer_id, address, city, state, zipcode, country) VALUES (2645, "333 SQL Road", "Jackson","MI", 29202, "US") - To update UPDATE customer_data.customer_address SET address = "123 New Address" WHERE customer_id= 2545 - To clean up DROP TABLE IF EXIST - Remove Duplicates SELECT distinct customer_id FROM customer_data.customer_addr.. 2023. 3. 21.
[GA] Google Data Analytics Program Course 4 정리 course 3는 전반적으로 sql 에 대해서 배웠다. Big query에 대해서 차근차근 시작한다. 하지만 역시 입문자에게 좋은 것 같다. broad하게 가르치다 보니 한국에서 제공한는 sql 영상들보다 더 더딘것같다. 다음은 데이터리안 sql 영상을 병행할 예정이다. 영어도 다시 연습하고 데이터 관련 공부할 수 있으니 강추한다. Terminology Definitions Population The entire group that you are interested in for your study. For example, if you are surveying people in your company, the population would be all the employees in your company... 2023. 3. 20.