Is it possible to create external table without mentioning column in hive

StackOverflow https://stackoverflow.com/questions/21754126

  •  11-10-2022
  •  | 
  •  

문제

Is it possible to create external table without mentioning column in hive

CREATE EXTERNAL TABLE table_name( ) ROW FORMAT SERDE ' '

올바른 솔루션이 없습니다

다른 팁

No we cannot. If you want to create a table having schema similar to another table, we can use " CREATE TABLE TABLE_NAME LIKE SOURCE_TABLE...." where in you don't mention the schema.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top