I have two columns (id, code) from one table. Id is a number, code is a string. The correct output would be:
1,00 01245
2,00 01465
3,00 02546
But I get the output:
1,00 1
2,00 2
3,00 3
The code gets the same value as id but it is still a string. I get the same result when I browse data.
Thanks for any suggestions!
1,00 01245
2,00 01465
3,00 02546
But I get the output:
1,00 1
2,00 2
3,00 3
The code gets the same value as id but it is still a string. I get the same result when I browse data.
Thanks for any suggestions!