标签: sql oracle plsql
我需要实现所需的输出
Total=20
但是当我尝试
select 'total=',sum(score) from table;
它给出的输出为
Total= 20
答案 0 :(得分:2)
try it.
select 'total='||sum(score) from table