SQL去重复语句:select 改为Delete select * from TRWTC01 where ITEM_NAME in (select ITEM_NAME from TRWTC01 group by ITEM_NAME,ITEM_TYPE,ATTRIBUT_1,ATTRIBUT_2,ATTRIBUT_3,ATTRIBUT_4 having count(ITEM_NAME) > 1) and REC_ID not in (select min(REC_ID) from TRWTC01…
增 insert into table (name,sex,age) value('张三','男','20') 向表中的name,sex,age,分别添加张三,男,20的内容 查 select "要查找的东西" from "从哪一个表查" *代表所有 select name where table where name='肖淇' 在表中查询名字为肖淇的内容 删 delete from table where name='肖淇…