比较实用SQL语句总结
更新时间:2008年04月30日 18:42:49 作者:
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 #
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 #
相关文章
SQL 随机查询 包括(sqlserver,mysql,access等)
SQL 随机查询 包括(sqlserver,mysql,access等),需要的朋友可以参考下,目的一般是为了随机读取数据库中的记录。2009-10-10
最新评论