服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - 数据库技术 - 比较实用SQL语句总结

比较实用SQL语句总结

2021-09-09 17:31SQL教程网 数据库技术

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 #

延伸 · 阅读

精彩推荐