例如:create字段中有一个值为:[101852]阿萨德,我现在想将这个create字段中的[]里的内容分为一个字段,阿萨德分为另一个字段来显示
select substring_index(create,']',-1),substring_index(substring_index(create,']',1),'[',-1) from table这样就可以了