Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c4a388 commit 0ae4f55Copy full SHA for 0ae4f55
Cloud Spanner: Qwik Start
@@ -0,0 +1,17 @@
1
+export REGION=
2
+gcloud spanner instances create test-instance \
3
+ --config=regional-$REGION \
4
+ --description="Test Instance" \
5
+ --nodes=1
6
+
7
8
+gcloud spanner databases create example-db --instance=test-instance
9
10
+gcloud spanner databases ddl update example-db --instance=test-instance \
11
+ --ddl="CREATE TABLE Singers (
12
+ SingerId INT64 NOT NULL,
13
+ FirstName STRING(1024),
14
+ LastName STRING(1024),
15
+ SingerInfo BYTES(MAX),
16
+ BirthDate DATE,
17
+ ) PRIMARY KEY(SingerId);"
0 commit comments