본문 바로가기

전체 글

(108)
태블로란? TWBX 4기에 발탁되며 태블로에 대해 공부해보려고 합니다! 목차 1.데이터 시각화는 어떻게 할까 2. 태블로란 3. 태블로의 장점은? 4. Tableau Creator 의 종류 1. 데이터 시각화는 어떻게 할까 보는 사람이 누구인지 파악하여 데이터를 탐색하여 찾아낸 인사이트를 빠르게 공유하고 협업하도록 시각화 2. 태블로란 1. Business Intelligence 솔루션 (BI 솔루션) 비즈니스에서 만나는 문제를 쉽게 시각화하여 답을 찾아내도록 하는 소프트웨어 여기서 BI란? 비즈니스를 운영하여 얻은 데이터를 수집, 저장, 분석하여 성과를 최적화하도록 하는 프로세스 전반을 의미함. 데이터를 통해 최선의 의사결정을 하여 비즈니스 목표를 달성하도록 도와준다. 2. 최소 수준의 기술로 IT 기술이 없는 ..
[해커랭크] [sql] SQL Project Planning SQL Project Planning | HackerRank SQL Project Planning | HackerRank Write a query to output the start and end dates of projects listed by the number of days it took to complete the project in ascending order. www.hackerrank.com 이번 문제는 어려워서 다른 분의 블로그를 참고하여 풀었습니다. [HackerRank SQL] SQL Project Planning (tistory.com) Sample Input Sample Output 2015-10-28 2015-10-29 2015-10-30 2015-10-31 2015-10-13 2..
[해커랭크] [sql] Ollivander's Inventory 오늘은 medium 문제 중 Ollivander's Inventory 를 풀어봤다. Harry Potter and his friends are at Ollivander's with Ron, finally replacing Charlie's old broken wand. Hermione decides the best way to choose is by determining the minimum number of gold galleons needed to buy each non-evil wand of high power and age. Write a query to print the id, age, coins_needed, and power of the wands that Ron's interested in..
[해커랭크] [sql] [medium] New Companies New Companies New Companies | HackerRank Find total number of employees. www.hackerrank.com 이번 문제는 계층에 따라 테이블이 있는 문제였다. Sample Input Company Table: Lead_Manager Table: Senior_Manager Table: Manager Table: Employee Table: Sample Output C1 Monika 1 2 1 2 C2 Samantha 1 1 2 2 c1(Monika), c2(samantha)에 따라 각 계층별로 개수를 출력하는 문제이다. SM2 같은 경우는 senior_manager 테이블에서 끝나기 때문에 Manager와 Employee에는 없다. 그래서 나는 Com..
[해커랭크] [SQL] Occupations Occupations | HackerRank Occupations | HackerRank Pivot the Occupation column so the Name of each person in OCCUPATIONS is displayed underneath their respective Occupation. www.hackerrank.com Sample Output Jenny Ashley Meera Jane Samantha Christeen Priya Julia NULL Ketty NULL Maria Doctor, Singer, Professor, Actor 순서대로 출력하는 문제 알파벳 순서대로 출력하며, 각 직업 중 최대 건수보다 적으면 null 값이 출력되어야한다. 이번 문제는 어려웠다. GROUP..
[해커랭크] [SQL] The PADs 스터디 팀원들과 리트코드 무료문제를 다 풀었다! 이제 해커랭크로 고고 오늘 푼 문제: The PADS | HackerRank The PADS | HackerRank Query the name and abbreviated occupation for each person in OCCUPATIONS. www.hackerrank.com 헷갈렸던 점: 두개의 쿼리를 작성해야하는 문제인데 한 쿼리로 다 풀려고 했다가 헤맸다. 샘플 아웃풋 : Ashely(P) Christeen(P) Jane(A) Jenny(D) Julia(A) Ketty(P) Maria(A) Meera(S) Priya(S) Samantha(D) There are a total of 2 doctors. There are a total of 2 sin..
[medium] 딜라이트룸 연재 글 읽기 https://medium.com/delightroom/%EA%B5%AC%EB%8F%85-%EC%88%98%EC%9D%B5%ED%99%94%EC%9D%98-%EA%B8%B0%EB%B3%B8-%EC%A7%80%ED%91%9C-%EC%9D%B4%ED%95%B4%ED%95%98%EA%B8%B0-1-48e8d4704002 구독 수익화의 기본 지표 이해하기 (1) MRR, Net MRR Movement, ARPPU medium.com
[leetcode] [MySQL] 176. Second Highest Salary https://leetcode.com/problems/second-highest-salary/submissions/ Second Highest Salary - LeetCode Second Highest Salary - Table: Employee +-------------+------+ | Column Name | Type | +-------------+------+ | id | int | | salary | int | +-------------+------+ id is the primary key column for this table. Each row of this table contains information about leetcode.com problem Write an SQL query to ..