Question

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

CREATE EXTERNAL TABLE table_name( ) ROW FORMAT SERDE ' '

No correct solution

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top