캐나다 취업 | 데이터 분석가, 데이터 엔지니어 면접 질문 모음
·
Canada/Work
회사 LFinancial Analytics 팀의 리더에게 직접 리포팅하는 신규 채용 포지션으로, 팀 내 두 번째 다이렉트 리포트가 될 예정입니다.포지션 개요팀 구성: Financial Data & Insights (8명)속한 부서: Finance (총 500명 규모)업무 성격: Engineering, Finance, Operations 부서와 cross-functional하게 협업하며, 데이터 분석, 문제 해결, 대시보드 개발(Tableau), 리포팅 작업 수행사용 툴: SQL, Python, Tableau, Excel중요 역량: SQL 실력, 분석적 사고, 협업 능력(team player)인터뷰 프로세스 요약1차: 리크루터와의 30분 전화 인터뷰2차: Tech Lead와의 30분 화상 인터뷰보다 기술적..
Excel | INDIRECT 함수란?
·
BI & Visualization/Excel
엑셀에서 INDIRECT 함수는 문자열로 주어진 참조를 실제 셀 참조로 변환하는 함수입니다. 즉, 직접 셀을 지정하는 대신 텍스트 형태로 된 주소를 이용해서 값을 가져올 수 있습니다.=SUM(INDIRECT(C3&"[Workshops Scheduled]"))이 수식은 INDIRECT 함수와 SUM 함수를 함께 사용하여 특정 테이블의 열(column)을 동적으로 참조하고, 그 합계를 구하는 구조입니다.=INDIRECT(C3&"[Workshops Scheduled]")C3C3 셀에 들어 있는 테이블 이름을 가져옵니다. AsteriskCity를 가져옵니다.&"[Workshops Scheduled]"[Workshops Scheduled]라는 열(column) 이름을 연결합니다.결과적으로"AsteriskCity[..
SQL | LeetCode 1164. 모든 제품의 가격 구하기
·
Computer Science/SQL
Table: Products+---------------+---------+| Column Name | Type |+---------------+---------+| product_id | int || new_price | int || change_date | date |+---------------+---------+(product_id, change_date) is the primary key (combination of columns with unique values) of this table.Each row of this table indicates that the price of some product was changed to a new price ..
SQL | LeetCode 1731. 매니저 정보 구하기
·
Computer Science/SQL
Table: Employees+-------------+----------+| Column Name | Type |+-------------+----------+| employee_id | int || name | varchar || reports_to | int || age | int |+-------------+----------+employee_id is the column with unique values for this table.This table contains information about the employees and the id of the manager they report to. Some employees do no..
SQL | LeetCode 619. Biggest Single Number (SQL GROUP BY...HAVING)
·
Computer Science/SQL
Table: MyNumbers+-------------+------+| Column Name | Type |+-------------+------+| num | int |+-------------+------+This table may contain duplicates (In other words, there is no primary key for this table in SQL).Each row of this table contains an integer. A single number is a number that appeared only once in the MyNumbers table.Find the largest single number. If there is no single n..
SQL | LeetCode 550. Game Play Analysis IV (SQL 서브쿼리 사용)
·
Computer Science/SQL
Table: Activity+--------------+---------+| Column Name | Type |+--------------+---------+| player_id | int || device_id | int || event_date | date || games_played | int |+--------------+---------+(player_id, event_date) is the primary key (combination of columns with unique values) of this table.This table shows the activity of players of some games.Each row is a recor..
올리브한입
'분류 전체보기' 카테고리의 글 목록 (8 Page)