[SQL] SELECT문

MJ·2022년 12월 6일
0
post-custom-banner

데이터베이스를 다룰 때 가장 많이 사용되는 쿼리문인 'SELECT'문에 대해 알아보았다.

1. Show the population of Germany

SELECT population FROM world
WHERE name='Germany';

2. Show the name and the population for 'Sweden', 'Norway' and 'Denmark'.

SELECT name, population FROM world
WHERE name IN ('Sweden', 'Norway', 'Denmark');

IN 연산자는 WHERE 절에서 특정값 여러 개를 선택하는 경우 사용하는 연산자입니다.

SELECT * FROM 테이블명
WHERE 컬럼명 IN ('값1', '값2', '값2', ...);

3. Show the country and the area for countries with an area between 200,000 and 250,000.


SELECT name, area FROM world 
WHERE area BETWEEN 200000 AND 25000;

BETWEEN 연산자는 조건식에서 >=AND=<와 같은 의미를 가지며 미만, 초과를 표현하기 위해선 <, >연산자를 이용해야 합니다.


SELECT * FROM 테이블명
WHERE 컬럼면 BETWEEN a AND b;
post-custom-banner

0개의 댓글