Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change 
notification.

The "Hive/LanguageManual/DDL" page has been changed by JohnSichi.
http://wiki.apache.org/hadoop/Hive/LanguageManual/DDL?action=diff&rev1=25&rev2=26

--------------------------------------------------

    [AS select_statement]  (Note: this feature is only available on the latest 
trunk or versions higher than 0.4.0.)
  
  CREATE [EXTERNAL] TABLE [IF NOT EXISTS] table_name
- LIKE existing_table_name
+   LIKE existing_table_name
- [LOCATION hdfs_path]
+   [LOCATION hdfs_path]
  
  data_type
    : primitive_type
@@ -135, +135 @@

  
  {{{
  CREATE TABLE empty_key_value_store
- LIKE key_value_store
+ LIKE key_value_store;
  }}}
  
  In contrast, the statement above creates a new empty_key_value_store table 
whose definition exactly matches the existing key_value_store in all 
particulars other than table name.  The new table contains no rows.

Reply via email to