how to do this in coldfusion
hi i had insert statement and the statement is
<cfqueryparam value="#right(trim(items[1]),13)#" cfsqltype="cf_sql_varchar">,
i need to do padding for this because we had some values of length 4(ex:1234),some have lenght 5(ex:12345),so i need to make them all to lenght of 13 by usig padding (ex:0000000001234),
how can i do this in coldfusion.
