문제

I have an SQL command: select CONCAT(REPLICATE('*', rank), sname, REPLICATE('*', rank)) from soldiers;

But it doesn't works, because only mssql supports replicate. How is it possible to manage it in oracle sql?

도움이 되었습니까?

해결책

RPAD should work

select RPAD('*', rank, '*') from soldiers;

But this kind of formatting is also easily done client-side (if you have an application between you and the database and are not just using an SQL prompt directly).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top