I have imported CSV file in SQLite Studio. I know want to change column data types and I have problems with decimal numbers. In column X I have numbers like:
636000
432.25
4.49
8.96
269906.81
6.26
Then I want to convert them to decimal(10,2) so I could for example get right maximum of the column X. When converting, I get this numbers:
636000
432.25
4.4900000000000002
8.9600000000000009
269906.81
6.2599999999999998
Why is that so? Thanks for help.