반응형
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
- SQL
- math
- gas
- Google Excel
- Excel
- PostgreSQL
- dataframe
- 파이썬
- Python
- c#
- matplotlib
- Github
- array
- Redshift
- Apache
- Google Spreadsheet
- PySpark
- PANDAS
- google apps script
- Java
- Mac
- list
- django
- GIT
- hive
- numpy
- Kotlin
- string
- Tkinter
Archives
- Today
- Total
달나라 노트
Hive : split (특정 구분자로 문자열 나누기, 구분자 문자열 나누기) 본문
728x90
반응형
split 함수는 특정 문자를 구분자로 하여 문자열을 나눠줍니다.
Syntax
split(text, delimiter)
- text
구분자를 기준으로 나눌 대상 text
- delimiter
구분자
select split('1234_5678_9101', '_') as list_split
, split('1234_5678_9101', '_')[0] as split_element_0
, split('1234_5678_9101', '_')[1] as split_element_1
, split('1234_5678_9101', '_')[2] as split_element_2
;
-- Result
["1234", "5678", "9101"]
1234
5678
9101
- split('1234_5678_9101', '_')
'1234_5678_9101' 라는 텍스트를 _를 기준으로 나누면 ["1234", "5678", "9101"] 가 됩니다.
그리고 이렇게 생성된 list형 데이터는 indexing으로 접근할 수 있습니다.
- split('1234_5678_9101', '_')[1]
그래서 이렇게 index = 1 위치에 있는 값을 꺼내 5678이라는 값을 return해줍니다.
728x90
반응형
'SQL > Apache Hive' 카테고리의 다른 글
Hive : show create table (table 정보 보기, table column list, table information) (0) | 2024.08.06 |
---|---|
Hive : percentile (백분률 구하기, 백분위 구하기) / 백분위로 중간값(median) 구하기 (0) | 2023.11.28 |
Hive : concat() (문자열 연결하기) (0) | 2023.10.13 |
Hive : unix_timestamp를 이용해서 두 시점간의 차이 구하기 (2) | 2023.10.10 |
Hive : datediff (두 날짜 간의 차이 구하기, 두 시점 차이를 일단위로 구하기) (0) | 2023.10.10 |
Comments