1. 首页 > 数据库技术

比较实用SQL语句总结

id name 
1 a 
2 b 
3 c 
1 a 
2 b 
3 c 

以下的sql语句都以上面表mytable为准:

1、查询id=1,3记录的所有数据 select * from mytable
where id in(1,3)
2、删除id重复的数据,表中数据只剩下id=1,2,3的所有数据 select * into # from mytable
truncate table mytable

insert table select distinct * from # 
select * from table 
drop table #

本文由主机测评网发布,不代表主机测评网立场,转载联系作者并注明出处:https://zhuji.jb51.net/shujuku/3076.html

联系我们

在线咨询:点击这里给我发消息

微信号:

工作日:8:30-17:30,节假日休息