sql语句:取一个表的前两条记录以外的所有记录。前提:这个表没有主键,没有自增长字段。 [解决办法]select identity(int,1,1) as a,* into #c from employees select * from #c where a <> 1 and a <> 2