nat
nat

Reputation: 17

Can't create a table in SQL

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

Upvotes: 0

Views: 1042

Answers (1)

Nestor
Nestor

Reputation: 1375

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.

Upvotes: 3

Related Questions