Is there a way to access the results of a snowflake query in PowerBI directly or would I need to insert the results into a table.
0
votes
4 Answers
0
votes
0
votes
0
votes
You define a View using a Select statement: https://docs.snowflake.com/en/sql-reference/sql/create-view.html
CREATE [ OR REPLACE ] [ SECURE ] [ RECURSIVE ] VIEW [ IF NOT EXISTS ] [ ( <column_list> ) ] [ COPY GRANTS ] [ COMMENT = '<string_literal>' ] AS <select_statement>