I have an sql table that I want to dump to an outfile. The thing is, some of the results are 1 digit, i.e 1 or 2, while others are long numbers, i.e. 1.2323523
This causes the outfile to look terrible, something like this
1 a bbb
1.21321342 aaaa bbbbb
meaning, the beginning of each column is not aligned. Does anyone know if there is a way in sql to take care of that?
Thanks!!!