id   record
1    10,20,30,40,50,通过update 把它变成 id  record 
1   20,30,40,50  就是把第一个逗号之前的值驱除掉 , 或是说截取第一个逗号以后的值,然后update update table set record=(select * from(select substring(record,LOCATE(',',record)+1) from b1 where id =1)b) where id=1;
初学,我用这一条可以实现,不过觉得不高明,所以来请老师教导一下 ^^感激了!