Frage

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

CREATE EXTERNAL TABLE table_name( ) ROW FORMAT SERDE ' '

Keine korrekte Lösung

Andere Tipps

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top