Hi,
I've been attempting to add leading zeros to a field. I'm not sure, but I think mydbr is removing them.
I'm doing the following:
...
Select LPAD(v.id, 6, '0') as 'Id'
...
LPAD seems to be working, as if you run:
* LPAD(v.id, 2, '0') as 'Id'
Then the item is truncated as you'd expect.
Do you have any suggestions?
Cheers
Rick