SSC-FDM-0001
Views selecting all columns from a single table are not required in Snowflake
Description
Code Example
Input Code (Oracle):
CREATE OR REPLACE VIEW simpleView1
AS
SELECT
*
FROM
simpleTable;
CREATE OR REPLACE VIEW simpleView2
AS
SELECT
*
FROM
simpleTable GROUP BY col1;Output Code:
Recommendations
Last updated
