I made a bigquery table with one column named "row" (without quotes) ... doh! Now my sql will not compile if I refer to this column:
SELECT row, etext FROM [hcd.hdctext] LIMIT 1; =ERROR"
I did not see "ROW" as a reserved word in GQL ...
I saw that on some systems you can get around this problem with backticks:
SELECT `row`, etext FROM [hcd.hdctext] LIMIT 1;
( Using reserved words in column names )
Any way to do the same in bigquery? Otherwise, I will have to restart my 200M data and start again. It seems that changing the field name will not be a big feature. But I'm naive about how data is stored.
Thanks!
google-bigquery
wgw
source share