DML

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;

 

posted @ 2022-11-09 22:45  YE-  阅读(37)  评论(0编辑  收藏  举报