请教一个sql语句

请问一个sql语句在oracle数据库中我使用下面语句想将name列的值前面全全部添加 ttt updatenetstore.pers

请问一个sql语句
在oracle数据库中我使用下面语句想将name列的值前面全全部添加 "ttt "
update   netstore.person
set   name= "ttt "+name
可是不能执行     不知道什么原因     请那位指教一下

[解决办法]
update netstore.person set name= 'ttt ' || name

首先,用单引号替换双引号,第二,不是 "+ "而是 "|| "
[解决办法]
update stu
set username = 'ttt '+username