Complete the code to create a 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 grant usage on the share 'my_share' to the account 'ACCOUNT_B'.
GRANT USAGE ON SHARE [1] TO ACCOUNT ACCOUNT_B;The share name must be exactly 'my_share' to match the created share.
Fill both blanks to create a database from a share named 'my_share' in account 'ACCOUNT_A'.
CREATE DATABASE [1] FROM SHARE ACCOUNT_A.[2];
The command creates a database named 'shared_sales_db' from the share 'my_share' in account 'ACCOUNT_A'.
Fill all three blanks to revoke usage on the share 'my_share' from account 'ACCOUNT_B'.
REVOKE [1] ON SHARE [2] FROM ACCOUNT [3];
The command revokes USAGE privilege on the share 'my_share' from 'ACCOUNT_B'.