sql要把电话号码前面加上010-的更新查询怎么做?update employees set telephone = '010-' + telephone where hometown = '北京'select * from employees where hometown = '北京'