달나라 노트

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:01
728x90
반응형

 

 

 

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
반응형
Comments