How i can read this line from csv in sql server
ad,aixas,Aixàs,06,42.4833333,1.466666
when i do this i got error please tell me about type for these value and a rule to add it into sql database table
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Any floating point type, but probably
double precisionas a compromise between accuracy and storage.floatis generic floating point type that you can specify the precision of.The synonym for real is float(24).
The synonym for double precision is float(53).
Source
If you want more accuracy you should use
decimal.