python - How to add "array of strings" as a schema value for BigQuery -
i want store array of string values in single column in bigquery. in order need first create table proper schema. schema identifier array array<t>
t
data type.
for example: t
replaced int64
array<int64>
enables storage of 64-bit integer array in column. how should same effect storing string values? have tried string
, varchar
, char
.
just mention: using latest google-cloud
python package
in order need first create table proper schema.
just run below in web ui new destination table - create needed schema
#standardsql select array<string>[] array_of_strings
Comments
Post a Comment