当我在雪花中查询外部表(指向CSV文件)时,结果以JSON格式显示。
如何在不使用sql以下任何形式的情况下以表格格式检索结果。我想做select * from table
,并且希望它以显示格式显示。
select
value:c1::int as month_num
,value:c2::string as month_name
from mytable
;
有什么想法吗?谢谢。
答案 0 :(得分:3)
在表上创建视图,然后在视图上使用select *
create or replace view my_view as
select value:c1::int as month_num ,value:c2::string as month_name from mytable;
select * from my_view;