1a
2b
3c
1a
2b
3c
以下的sql语句都以上面表mytable为准:
1、查询id=1,3记录的所有数据select*frommytable
whereidin(1,3)
2、删除id重复的数据,表中数据只剩下id=1,2,3的所有数据select*into#frommytable
truncatetablemytable
inserttableselectdistinct*from#
select*fromtable
droptable#
以下的sql语句都以上面表mytable为准:
1、查询id=1,3记录的所有数据select*frommytable
whereidin(1,3)
2、删除id重复的数据,表中数据只剩下id=1,2,3的所有数据select*into#frommytable
truncatetablemytable
inserttableselectdistinct*from#
select*fromtable
droptable#