这个sgrade里数据前的‘s’是我通过update sc set sgrade=‘s’+sgrade加进去的,现在要去掉这个s怎么办
收起
update sc set sgrade=replace(sgrade, 's', '')
报告相同问题?