前端补0的三种方式。
select lpad(sal,8,‘0‘) from emp;
select to_char(sal,‘00000000‘) from emp;
select substr(‘00000000‘||sal,-8) from emp;
时间: 2024-10-01 02:29:54
前端补0的三种方式。
select lpad(sal,8,‘0‘) from emp;
select to_char(sal,‘00000000‘) from emp;
select substr(‘00000000‘||sal,-8) from emp;