--删除字段
alter table ycb_mcs_bigstation_extend drop column test
--添加字段
alter table ycb_mcs_bigstation_extend add column had_bloothmac int(1) NOT NULL DEFAULT '0'
--更新或插入操作(只要其中索引在数据库有的,就根据有的这个索引进行更新)
INSERT INTO ycb_mcs_bigstation_extend(createdBy,createdDate, sid,had_bloothmac) VALUES('SYS:insertBluetoothMac', NOW(),172692,0) ON DUPLICATE KEY UPDATE had_bloothmac=0;