Changes between Version 6 and Version 7 of waue/2009/0506
- Timestamp:
- May 6, 2009, 5:05:51 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
waue/2009/0506
v6 v7 29 29 hive> CREATE TABLE pokes (foo INT, bar STRING); 30 30 }}} 31 * 31 * 輸出如: 32 32 {{{ 33 33 #!sh … … 39 39 hive> CREATE TABLE invites (foo INT, bar STRING) PARTITIONED BY (ds STRING); 40 40 }}} 41 * 41 * 輸出如: 42 42 {{{ 43 43 #!sh … … 49 49 hive> SHOW TABLES; 50 50 }}} 51 * 51 * 輸出如: 52 52 {{{ 53 53 #!sh … … 60 60 hive> DESCRIBE invites; 61 61 }}} 62 * 62 * 輸出如: 63 63 {{{ 64 64 #!sh … … 73 73 hive> ALTER TABLE pokes ADD COLUMNS (new_col INT); 74 74 }}} 75 * 75 * 輸出如: 76 76 {{{ 77 77 #!sh … … 83 83 hive> ALTER TABLE invites ADD COLUMNS (new_col2 INT COMMENT 'a comment'); 84 84 }}} 85 * 85 * 輸出如: 86 86 {{{ 87 87 #!sh … … 94 94 OVERWRITE INTO TABLE pokes; 95 95 }}} 96 * 96 * 輸出如: 97 97 {{{ 98 98 #!sh … … 107 107 OVERWRITE INTO TABLE invites PARTITION (ds='2008-08-15'); 108 108 }}} 109 * 109 * 輸出如: 110 110 {{{ 111 111 #!sh … … 120 120 OVERWRITE INTO TABLE invites PARTITION (ds='2008-08-08'); 121 121 }}} 122 * 122 * 輸出如: 123 123 {{{ 124 124 #!sh … … 133 133 SELECT a.* FROM invites a; 134 134 }}} 135 * 135 * 輸出如: 136 136 {{{ 137 137 #!sh … … 151 151 hive> select count(1) from pokes; 152 152 }}} 153 * 153 * 輸出如: 154 154 {{{ 155 155 #!sh … … 181 181 hive> INSERT OVERWRITE DIRECTORY '/tmp/hdfs_out' SELECT a.* FROM invites a; 182 182 }}} 183 * 183 * 輸出如: 184 184 {{{ 185 185 #!sh … … 199 199 hive> INSERT OVERWRITE DIRECTORY '/tmp/reg_5' SELECT COUNT(1) FROM invites a; 200 200 }}} 201 * 201 * 輸出如: 202 202 {{{ 203 203 #!sh