SELECT CONCAT('CG',lpad(AM_APPLY_SEQUENCE.nextval, 5, '0')) as code FROM DUAL;函数
concat拼接字符串spa
concat(Str1,str2)拼接str1和str2code
lpad函数ci
lpad( string1, padded_length, [ pad_string ] )
其中string1是须要粘贴字符的字符串
padded_length是返回的字符串的数量,若是这个数量比原字符串的长度要短,lpad函数将会把字符串截取成padded_length;字符串
pad_string是个可选参数,这个字符串是要粘贴到string1的左边,若是这个参数未写,lpad函数将会在string1的左边粘贴空格。
例如:
string
lpad('tech', 7); | 将返回' tech' |
lpad('tech', 2); | 将返回'te' |
lpad('tech', 8, '0'); | 将返回'0000tech' |
lpad('tech on the net', 15, 'z'); | 将返回 'tech on the net' |
lpad('tech on the net', 16, 'z'); | 将返回 'ztech on the net' |