Search This Blog

Tuesday, August 9, 2011

select data in 2 part by even and odd data selection by sql query

select * from help where (SNo%2)=0 //even case

select * from help where (SNo%2)<>0 //odd case

No comments :