SELECT *from agent;
INSERT into agent (AgentID,AgentName,AgentAddress,Phone) values (1,'ANALYZE','beijing','188');
update agent SET AgentID = 4 where AgentAddress = 'beijing';
DELETE from agent where AgentID = 4;
标签:beijing,DML,agent,AgentAddress,AgentID,where From: https://www.cnblogs.com/yzx-sir/p/16875510.html