I have created a Table in Big Query and defined the relevant datatype as we wanted it . But while inserting record in Big Query table using Insert statement. I gives me error Value has type STRING which cannot be inserted into column EmployeeID, which has type INT64 at [36:4]
Though when i have already defined EmployeeID as Inetger Datattype
Can someone help here Create table Thanks Insert into
Inserting record in to Big Query table when datatype is already defined
If you enclose your integers in quotes, you are effectively converting them to a STRING. Try again but remove your quotes from the values that are supposed to be Integers.