SQL Impala 从视图创建分区表
我有兴趣将视图转换为表,但我希望将表分区为一个变量: 我的查询是:
CREATE TABLE table_test AS ( 选择 * FROM view_test
我想让表按变量“时间段”分区。
先感谢您。
I am interested in turning a view into a table, but I want the table to be partitioned wrt to one variable:
My query is:
CREATE TABLE table_test AS (
SELECT
*
FROM view_test
And I want to have the table partitioned by the variable "time-period".
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以像这样直接这样做
You can do this directly like this