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