|
|
|
|
|
by kccqzy
1389 days ago
|
|
I must say in this case Google does it right: https://cloud.google.com/spanner/docs/reference/standard-sql... In Google standard SQL, to access an array it is simply not allowed to put a number inside square brackets. You must specify which way you mean. So `SELECT some_numbers[OFFSET(1)], some_numbers[ORDINAL(1)]` is allowed but not `SELECT some_numbers[1]`. |
|