MySQL 테이블 데이터 조회, 읽어오기(select)

2023. 12. 7. 17:54Database/MySQL

728x90
반응형

 

 

 

 

MySQL Workbench에서 저장된 데이터를 조회, 불러오는 select 문에 대해 알아봅니다.

 

 

 

1. 테이블의 모든 데이터를 가져오기

(* = all 의 의미)

 

select *
from cats;

 

 

 

 

 

2. id, name 컬럼만 가져오기

 

select id, name
from cats;

 

 

 

 

 

3. name, age, id 컬럼 가져오기

 

select name, age, id 
from cats;

 

 

 

 

 

4. id, name 컬럼을 가져오되 cat name 이라는 컬럼으로 바꿔서 가져오기

컬럼이름 as 바꿀이름 or 컬럼이름 바꿀이름 으로 작성합니다.

 

select id, name as 'cat name'
from cats;

select id, name 'cat name'
from cats;

 

 

select id, name cat_name, age cat_age 
from cats;

 

 

 

 

 

5. age가 4인 데이터를 가져오기

 

select *
from cats
where age = 4 ;

 

 

 

 

 

6. age가 8보다 큰 데이터를 가져오기

 

select *
from cats
where age > 8 ;

 

 

 

 

 

 

728x90
반응형