Complete the code to select all columns from a table named 'employees'.
SELECT [1] FROM employees;In SQL, * means select all columns from the table.
Complete the code to create a Snowflake stage named 'mystage'.
CREATE STAGE [1];Snowflake stage names are identifiers. Here, 'mystage' is the correct name as per instruction.
Fix the error in the Snowflake SQL command to create a table with a column 'id' as integer.
CREATE TABLE users (id [1]);The correct data type for an integer column in Snowflake is INTEGER.
Fill both blanks to create a Snowflake SQL query that selects the count of rows from 'orders' where 'status' equals 'shipped'.
SELECT COUNT([1]) FROM orders WHERE status [2] 'shipped';
Use * to count all rows and = to filter where status equals 'shipped'.
Fill all three blanks to create a Snowflake SQL query that selects the upper case of 'name', the 'age', and filters where 'age' is greater than 30.
SELECT [1](name), [2] FROM people WHERE age [3] 30;
Use UPPER to convert name to uppercase, select age, and filter with > for ages greater than 30.