I have successfully insert data with LOAD DATA INFILE. After that when I am using the query:
SELECT * FROM tempupload
WHERE columnName NOT IN (SELECT columnName FROM othertable)
Not giving me the desirable result. But when I convert columnName datatype to double (and after again to varchar) giving me desirable results.
Please guide me as I have to use these queries from my Java EE Application.