Complete the code to create a new Snowflake organization.
CREATE ORGANIZATION [1];The CREATE ORGANIZATION command requires the name of the organization to create.
Complete the code to add an account to an existing organization.
ALTER ORGANIZATION my_org ADD ACCOUNT [1];The ADD ACCOUNT command requires the account identifier to add to the organization.
Fix the error in the code to remove an account from an organization.
ALTER ORGANIZATION my_org [1] ACCOUNT account_123;To remove an account from an organization, use the DROP ACCOUNT command.
Fill both blanks to list all accounts in an organization with their status.
SHOW [1] IN ORGANIZATION my_org WHERE status [2] 'ACTIVE';
The SHOW ACCOUNTS command lists accounts, and the filter uses = to match active status.
Fill all three blanks to create a new account in an organization with a specific edition and region.
CREATE ACCOUNT [1] IN ORGANIZATION my_org SET EDITION = '[2]', REGION = '[3]';
The account name goes first, then the edition (STANDARD), and the region (US_WEST) specifies where the account is created.