DB2把整型轉換成制定長度的字符串,前面補0
select a.auto_id,right(digits(cast(auto_id as bigint)),18) from T_BZ_DEMO_AREA_APP a;
digits必須使用整型參數。
www.2cto.com
auto_id類型為:
small integer :返回5位字符串。
large integer :返回10位字符串。
big integer :返回19位字符串。
如果需要的字符串長度不是上面這些長度,需要使用right函數來獲取右邊的字符串長度。