An external object storage container has been mounted at the location /mnt/finance_eda_bucket. The following commands were executed to create a database for the finance team: CREATE DATABASE finance_eda_db LOCATION '/mnt/finance_eda_bucket' ; GRANT USAGE ON DATABASE finance_eda_db TO finance ; GRANT CREATE ON DATABASE finance_eda_db TO finance ; After successfully creating the database and configuring the permissions, a member of the finance team executed the following command: CREATE TABLE finance_eda_db . tx_sales AS SELECT * FROM sales WHERE state = "TX" ; If all users in the finance team belong to the finance group, which of the following statements accurately describes how the tx_sales table will be created?