select substring_index(colum,',',1) #取得替换后的内容update table set colum=substring_index(colum,',',1); 说明:substring_index(被截取字段,关键字,关键字出现的次数)