Answers for "how to create external table in hive"

SQL
1

how to create external table in hive

create external table if not exists [external-table-name] (
[column1-name] [column1-type], [column2-name] [column2-type], …)
comment '[comment]'
row format [format-type]
fields terminated by '[termination-character]'
stored as [storage-type]
location '[location]';
Posted by: Guest on March-01-2022

Code answers related to "how to create external table in hive"

Code answers related to "SQL"

Browse Popular Code Answers by Language