MSCINF0001
Views selecting all columns from a single table are not required in Snowflake
Severity
Description
Code Example
Input Code:
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
