반응형
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
- GIT
- SQL
- PANDAS
- dataframe
- Redshift
- Google Excel
- math
- PySpark
- array
- PostgreSQL
- Apache
- 파이썬
- Github
- Google Spreadsheet
- Java
- matplotlib
- Mac
- Excel
- gas
- c#
- list
- Python
- Kotlin
- hive
- django
- google apps script
- numpy
- string
- Tkinter
Archives
- Today
- Total
달나라 노트
Hive : show create table (table 정보 보기, table column list, table information) 본문
SQL/Apache Hive
Hive : show create table (table 정보 보기, table column list, table information)
CosmosProject 2024. 8. 6. 21:01728x90
반응형
Hive에서 table에 있는 column 등 table의 정보를 보고 싶으면 show create table을 이용하면 됩니다.
Syntax
show create table schema.table
;
show create table schema.table
;
-- Result
CREATE TABLE `test_schema.test_table` (
`id` bigint,
`name` string,
`price` bigint
)
ROQ FORMAT SERDE
'org.apache.hadoop.hive.ql.io.orc.OrcSerde'
SRORED AS INPUTFORMAT
'org.apache.hadoop.hive.ql.io.orc.OrcInputFormat'
OUTPUTFORMAT
'org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat'
LOCATION
'~~'
show create table을 사용하면 위처럼 테이블에 있는 컬럼과 컬럼의 정보가 출력됩니다.
728x90
반응형
'SQL > Apache Hive' 카테고리의 다른 글
Hive : Partition table 만들기, partition에 insert하기 (0) | 2024.08.22 |
---|---|
Hive : show create schema (schema information) (0) | 2024.08.06 |
Hive : percentile (백분률 구하기, 백분위 구하기) / 백분위로 중간값(median) 구하기 (0) | 2023.11.28 |
Hive : split (특정 구분자로 문자열 나누기, 구분자 문자열 나누기) (0) | 2023.11.28 |
Hive : concat() (문자열 연결하기) (0) | 2023.10.13 |
Comments