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
The pictures you have provided are not very helpful with regards to your query. But I suppose the error you are facing is due to you are inserting string value into INT datatype column. Try once removing the quotes from the insert query for the EmployeeID column. e.g. instead of '100598' write only 100598 (considering that is the integer column where you are trying to insert)