What is the output of running the following statement in the Presto command line interface (CLI) (where the catalog specified does not exist)?
create table badcatalog.newschema.employees (emp_id int, emp_name varchar);
a) The statement will execute successfully and create a new table.
b) The statement will throw an error because the specified catalog does not exist.
c) The statement will create a new schema called employees in the badcatalog catalog.
d) The statement will create a new database called badcatalog with a table called employees.