So, I have a rather strange problem, I have a column (say column A) in excel that has data that looks like this:
11/11/2015 10:14
I have many other columns, but in any case, in my SQL Insert statement in excel, the data (when copying) looks like this: +42105,4561921296
The = "INSERT INTO TABLE VALUES ('' & A1 &" ', Etc ....) "is in the" general "data format, and the Date column is in the" Custom "format, where it is the type M / DD / YYYY MM / HH inside.
The SQL column is of the DATETIME data type, so of course it does not accept the strange number it receives.
Any ideas? changing the format of the SQL INSERT column does not change the results.
user475353
source share