把查询的结果保存到新表中
insert into newtablename select * from tablename;
如果表不存在
creat table newtablename as select * from tablename;
2024-04-05 15:18:48
把查询的结果保存到新表中
insert into newtablename select * from tablename;
如果表不存在
creat table newtablename as select * from tablename;
下一篇:Hbase操作与编程使用