我在 mysql 中有一个表,其中的列comp_post_code
是 whivh 邮政编码格式没有空格M4W1A3
,但有些邮政编码是这样的,带有,AB T1H2J1
等等。我想从中删除这额外的 AB BC 位。BC V6X3P7
QC G0C2R0
我怎么能在mysql中做到这一点......(AB BC QC is just example there r many others in them, but all are in front and with space and postcode dont have space
)
编辑...我试过这个
UPDATE canada_database
SET comp_post_code= SUBSTRING(comp_post_code, 3)
但是它从所有行中删除第一个 3 ......正如我所提到的,有一些有这个问题不是全部..如果我这样做会影响所有。