일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 프로그래머스
- 코딩테스트
- Object Detection
- Segmentation
- Recsys-KR
- TEAM EDA
- Machine Learning Advanced
- Python
- 나는 리뷰어다
- DilatedNet
- 한빛미디어
- 알고리즘
- 튜토리얼
- Image Segmentation
- 파이썬
- MySQL
- hackerrank
- 협업필터링
- 입문
- DFS
- 3줄 논문
- 추천시스템
- 엘리스
- eda
- 스택
- Semantic Segmentation
- 큐
- 나는리뷰어다
- TEAM-EDA
- pytorch
- Today
- Total
목록EDA Study/SQL (22)
TEAM EDA
Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order. Input Format The Employee table containing employee data for a company is described as follows: where employee_id is an employee's ID number, name is their name, months is the total number of months they've been working for the company, and salary is their monthly ..
Query the Name of any student in STUDENTS who scored higher than 75 Marks. Order your output by the last three characters of each name. If two or more students both have names ending in the same last three characters (i.e.: Bobby, Robby, etc.), secondary sort them by ascending ID. Input Format The STUDENTS table is described as follows: The Name column only contains uppercase (A-Z) and lowercase..
The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. Q1. Query a list of CITY and STATE from the STATION table. SELECT CITY, STATE FROM STATION; Q3. Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer. SELECT CITY FROM STATION WHERE ID..
Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows: SELECT NAME FROM CITY WHERE COUNTRYCODE = 'JPN';
Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows: SELECT * FROM CITY WHERE COUNTRYCODE = 'JPN';
Query all columns for a city in CITY with the ID 1661. The CITY table is described as follows: SELECT * FROM CITY WHERE ID = 1661;
Query all columns (attributes) for every row in the CITY table. The CITY table is described as follows: Answers SELECT * FROM CITY
문제 1. 회원 테이블 추가하기 엘리스 가게에서는 회원가입을 통해 구매한 가격만큼 마일리지 혜택을 주려고 합니다. 이를 위해 customer 테이블을 만들고자 합니다. 지시사항에 맞추어 customer 테이블을 완성해 봅시다. 지시사항 아래와 같은 고객의 정보를 customer테이블에 추가해 봅시다 customer테이블의 모든 컬럼을 출력해 봅시다. 풀이 1. -- customer 테이블의 내용을 추가합니다. INSERT INTO customer(id, name, birthday, mileage) VALUES(1, 'Elice', '2010-01-15', 100); INSERT INTO customer(id, name, birthday, mileage) VALUES(2, 'Cheshire', '2005-..
본 자료는 Elice Academy에서 진행한 SQL 기초라는 과목을 정리한 자료입니다. 목차 GROUP BY HAVING INNER JOIN LEFT OUTER JOIN RIGHT OUTER JOIN 1. GROUP BY 데이터를 GROUP 지어서 정보를 확인할 때 사용하는 명령어입니다. 예를 들어, 대여 정보가 저장되어있는 rental 테이블에서 각 회원이 책을 몇 번 대여하였는지 검색해보려고 할 때 사용합니다. GROUP BY 절의 기본 문법으로는 SELECT 검색할 컬럼 FROM 테이블 GROUP BY 기준 컬럼입니다. 실습 1. 데이터 그룹 짓기 문제 : rental테이블에는 어떤 사람이 어떤 책을 빌려 갔는지 저장되어있습니다. 이 정보를 이용해서 어떤 사람이 몇 권의 책을 빌려 갔는지 확인하려..
본 자료는 Elice Academy에서 진행한 SQL 기초라는 과목을 정리한 자료입니다. 목차 COUNT LIMIT SUM과 AVG MIN와 MAX 1. COUNT COUNT란 검색한 결과의 데이터의 개수를 가져오는 명령어입니다. 예를 들어, 책 정보를 저장하는 book 테이블에서 전체 책 수를 조회해보려고 할 때 사용할 수 있습니다. 문법으로는 SELECT COUNT(컬럼) FROM 테이블입니다. 만일 검색할 데이터에 *을 입력하면 모든 데이터가 검색이 됩니다. (전체의 row의 수가 출력이 됩니다. ※참고 컬럼 자리에 *을 넣을 경우 모든 컬럼에 대한 값을 볼 수 있습니다. count의 경우 NULL은 개수에 포함되지 않습니다. 실습 1. 데이터 수 카운트하기 문제 : 도서관의 전체 책의 수를 조회해..