数据库
首页 > 数据库> > mysql——DML

mysql——DML

作者:互联网

--删除字段
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;

 

标签:bigstation,extend,DML,had,bloothmac,mysql,ycb,mcs
来源: https://blog.csdn.net/Hedy17/article/details/100524594