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