Hi,
Im tring to build a custum field query without sucess.
Here is the problem, i have two fields that have to concatenate in order to have a result with difined size.
E.g
integer x = 1234
varchar(10) y= "hithere"
The result must be x + y = "001234000hithere"
For start if i try NVL(REPLACE(x[1,6]," ","0"),"000000") it dosent work for Integer.
If i aplly it to the y: NVL(REPLACE(y[1,10]," ","0"),"0000000000") the result will be "hithere000".
Any one can help?