반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Google Spreadsheet
- math
- Github
- array
- numpy
- matplotlib
- SQL
- string
- 파이썬
- c#
- django
- PySpark
- hive
- Kotlin
- Python
- Tkinter
- Mac
- Apache
- Java
- Redshift
- list
- PostgreSQL
- Google Excel
- PANDAS
- Excel
- gas
- GIT
- google apps script
- dataframe
Archives
- Today
- Total
달나라 노트
Redshift : cast, convert (data type 변경하기) 본문
728x90
반응형
cast(value_or_column as data_type)
convert(data_type, value_or_column)
cast와 convert는 어떤 값 또는 컬럼에 있는 값들을 원하는 data type으로 바꿔줍니다.
select cast(1 as varchar);
select convert(varchar, 1);
select cast('1' as int);
select convert(int, '1');
위 select 구문의 결과는 모두 1입니다.
하지만 처음 2개의 select로부터 반환되는 1은 텍스트이며,
세 번재, 네 번째 select로부터 반환되는 1은 정수입니다.
select 1::varchar;
select '1'::int;
추가로 위처럼 2개의 콜론을 사용하여 data type 변경도 가능합니다.
728x90
반응형
'SQL > Redshift' 카테고리의 다른 글
Redshift : to_char (timestamp 또는 date를 문자로 변환) (0) | 2021.01.22 |
---|---|
Redshift : to_date (문자를 날짜로 변환) (0) | 2021.01.22 |
Redshift : random (0(포함)~1(제외) 사이의 랜덤한 실수 반환) (0) | 2021.01.22 |
Redshift : mod (나누기 후의 나머지 반환) (0) | 2021.01.22 |
Redshift : with (임시 테이블 (같은 것) 만들어 이용하기) (0) | 2021.01.21 |
Comments