日期:2014-05-18  浏览次数:20475 次

sql语句问题 急!!
现在有一列中的数据是
  13099197155??

在号码后面有?? 我用什么语句可以删除在号码后代??的


------解决方案--------------------
SQL code
update tb set col = replace(col , '?' , '')

update tb set col = left(col ,11) --如果是手机号.