목록분류 전체보기 (66)
데이터 놀이터
1. 문제 Generate the following two result sets: Query an alphabetically ordered list of all names in OCCUPATIONS, immediately followed by the first letter of each profession as a parenthetical (i.e.: enclosed in parentheses). For example: AnActorName(A), ADoctorName(D), AProfessorName(P), and ASingerName(S). Query the number of ocurrences of each occupation in OCCUPATIONS. Sort the occurrences in ..
1. 문제 Table: Trips +-------------+----------+ | Column Name | Type | +-------------+----------+ | id | int | | client_id | int | | driver_id | int | | city_id | int | | status | enum | | request_at | date | +-------------+----------+ id is the primary key (column with unique values) for this table. The table holds all taxi trips. Each trip has a unique id, while client_id and driver_id are forei..
* 본 글은 GAC를 취득하기 위하여 학습한 내용을 정리하였습니다. 자세한 내용은 https://skillshop.exceedlms.com/student/catalog/list?category_ids=6431-google-analytics-4&utm_campaign=redirect&utm_source=analytics-academy&utm_medium=banner 에 있습니다. 1. GA4의 속성의 특징과 장점 GA4는 기존에 구글에서 제공하던 UA의 기능을 보완하여 더 나은 서비스를 제공한다. UA와 GA4의 차이는 다음과 같다. (1) 측정 GA4가 기존 세션 기반에서 이벤트 기반 모델로 변화되면서 사용자가 취한 액션을 조금 더 상세하게 분석이 가능해졌다. 참고 : GA4 이벤트 종류 (https:/..
1. 문제 Table: Stadium +---------------+---------+ | Column Name | Type | +---------------+---------+ | id | int | | visit_date | date | | people | int | +---------------+---------+ visit_date is the column with unique values for this table. Each row of this table contains the visit date and visit id to the stadium with the number of people during the visit. As the id increases, the date increases..
1. 문제 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 record of a pla..
mysql에서는 REGEXP와 REGEXP_SUBSTR을 활용하여 정규 표현식을 사용할 수 있다. 1. REGEXP WHERE 절에서 REGEXP 뒤에 원하는 정규식을 쓰고 활용할 수 있다. -- seoul로 시작하는 도시명 WHERE city REGEXP '^seoul' -- seoul로 시작하지 않는 도시명 WHERE city NOT REGEXP '^seoul' 2. REGEXP_SUBSTR 문자열 중에서 원하는 부분을 정규식으로 뽑아낼 수 있는 문법이다. REGEXP_SUBSTR(문자열, 정규식)으로 문법이 이루어져 있으며 해당 문자열에서 정규식에 맞는 부분만 추출할 수 있다. REPLACE를 활용하면 원하는 부분만 깔끔하게 찾아낼 수 있다. -- city=~이 포함된 문자열에서 seoul만 뽑아내..
보호되어 있는 글입니다.
1. 문제 Table: RequestAccepted +----------------+---------+ | Column Name | Type | +----------------+---------+ | requester_id | int | | accepter_id | int | | accept_date | date | +----------------+---------+ (requester_id, accepter_id) is the primary key (combination of columns with unique values) for this table. This table contains the ID of the user who sent the request, the ID of the user who ..
보호되어 있는 글입니다.
* 본 게시글과 이미지는 모두 2022년에 수강한 edwith 강의 내용을 정리한 네이버 블로그 글입니다. 출처 : https://www.edwith.org/sogang_python 기초 PYTHON 프로그래밍 강좌소개 : edwith '기초 PYTHON 프로그래밍' 강의는 처음으로 프로그래밍을 접하는 수강생들을 대상으로 하는 PYTHON 문법 및 코딩 강의입니다. 이 과정을 통하여 PYTHON에서 어떻게 데이터... - 이지선 www.edwith.org - 1일차: 객체와 변수 https://blog.naver.com/dlguswns1994/222793721211 - 2일차: 수치 자료형과 연산 https://blog.naver.com/dlguswns1994/222794063507 - 3일차: 문자열 ..