Hi All,
I am writing this string but I have always a syntax error.
project id is project-49087
database is customer_data
table is customer_address
Any advice?
Thanks
INSERT INTO `project-49087.customer_data.customer_address` ...
Replace the ...
with the rest of your INSERT statement, such as the columns you are inserting into and the values for those columns. For example:
INSERT INTO `project-49087.customer_data.customer_address` (column1, column2, ...)
VALUES (value1, value2, ...);
Make sure to replace column1
, column2
, etc., with the actual column names of your table, and value1
, value2
, etc., with the corresponding values you want to insert.