select 'dbr.text', rpad('abc',25,char(32))
trying to do above but none space is appended at the end
select 'dbr.text', rpad('abc',25,char(32))
trying to do above but none space is appended at the end
HTML suppresses spaces by default. You can use:
select 'dbr.text', concat('<span style="white-space:pre">',rpad('abc',25,char(32)), '</span>');
--
myDBR Team
You must log in to post.