MySQL 컬럼 순서 바꿔 출력하기, 컬럼 별명 붙이기.
매출정보 테이블 table_sales 준비하기.
create table table_sales (number varchar(10), sales int, month int);
insert into table_sales (number, sales, month) values (‘A3’, 56, 10), (‘A4’, 300, 10), (‘A2’, 25, 10), (‘A4’, 100, 11), (‘A6’, 99, 10), (‘A5’, 44, 10), (‘A2’, 67, 11), (‘A3’, 94, 11), (‘A6’, 55, 11), (‘A5’, 21, 11);
select * from table_sales;
MySQL 컬럼 순서를 바꿔서 출력하기.
table_sales의 내용을 sales, number 순서로 표시해 보겠습니다.
select sales, number from table_sales;
컬럼 이름을 별명으로 바꾸기.
컬럼 이름에 number나 sales만 표시하면, 어떤 데이터를 표시한 것인지 잘 모를 수 있습니다.
컬럼을 알기 쉽도록 별명을 붙일 수가 있습니다.
select 컬럼명 as 별명 from 테이블명;
컬럼 number에는 사원번호, sales 에는 매출이라는 별명을 붙여 보겠습니다.
select number as 사원번호, sales as 매출 from table_sales;
'MySQL' 카테고리의 다른 글
MySQL select 조건 설정하기. (0) | 2017.11.22 |
---|---|
MySQL 계산하거나 문자열을 결합해서 표시하기, MySQL 함수 사용하기 (0) | 2017.11.10 |
MySQL 콘솔창을 사용하지 않고 MySQL 조작하기. (0) | 2017.10.24 |
MySQL 테이블과 데이터베이스, 레코드 삭제하기. (0) | 2017.10.23 |
MySQL 테이블과 레코드 복사하기. (0) | 2017.10.22 |