Can't create a table in SQL

Viewed 82

Can't create a table in Cloud SQL. Error : Table "Persons" must be qualified with a dataset (e.g. dataset.table).

I have tried different names and still can't create tables.

enter image description here

1 Answers

I believe you are missing the dataset name on where the table will be created. Something like this CREATE TABLE <myDatasetName>.Persons(...) .

For your reference please visit this documentation here, Additionally you can visit here for creating a dataset.

Related