select avg(price) as 'average_price'
from titles我想在此字段自动为每个属性加个货币符号
比如 
$12.30
这个$如何加入啊?select '$' + avg(price) as 'average_price'
from titles
不行啊