create proc kkk
as
  select *,id=identity(int,1,1) into #b from a
  select * from #b where id % 2 =1
go这个存储过程我想用来 隔行读取表a中的数据的.但是每当where id % 2 =1 时,报错:列明id无效.请问这该怎么解决?