I have 3 tables that have exact same schema and I would like to union/join/merge them all into one big table and save it as combinedtable.
Within each of the 3 tables is the same column that contains a string. The string within this column is prefixed with a "'" which I would like to remove.
I concatenated this character to my string in excel to overcome the scientific notation that excel applied to it. Since I have defined that column as a string in my BigQuery schema I no longer need it and would like to remove it.
SQL or its like is not my thing (yet!), could someone give me an idea how I could do this in BigQuery?
I believe I can do a LTRIM on the column to remove the "'" from the start of the string but I don't know how to piece it all together with the union part.