Reputation: 105
is Hive allow us to select updated data and create new table? Which means a new table will be created using the same schema of old table after some row of data is updated.
Upvotes: 0
Views: 272
Reputation: 44941
CTAS (Create Table As Select)
The basic syntax:
create table my_new_table
as
select ...
from my_table
;
Upvotes: 2