Complete the code to create a new share named 'my_share'.
CREATE SHARE [1];The command CREATE SHARE my_share; creates a new share named 'my_share'.
Complete the code to add the database 'sales_db' to the share 'my_share'.
ALTER SHARE my_share ADD DATABASE [1];The command ALTER SHARE my_share ADD DATABASE sales_db; adds the 'sales_db' database to the share.
Fix the error in the code to remove the database 'marketing_db' from the share 'my_share'.
ALTER SHARE my_share [1] DATABASE marketing_db;The correct syntax to remove a database from a share is ALTER SHARE my_share DROP DATABASE marketing_db;.
Fill both blanks to grant usage on the share 'my_share' to the account 'partner_account'.
GRANT [1] ON SHARE my_share TO ACCOUNT [2];
The command GRANT USAGE ON SHARE my_share TO ACCOUNT partner_account; allows the partner account to use the share.
Fill all three blanks to create a share named 'analytics_share', add the database 'analytics_db', and grant usage to account 'client_account'.
CREATE SHARE [1]; ALTER SHARE [2] ADD DATABASE [3]; GRANT USAGE ON SHARE [2] TO ACCOUNT client_account;
This sequence creates the share 'analytics_share', adds the 'analytics_db' database, and grants usage to 'client_account'.