I know it can do by view, but I dont want use views. first some rows selecting as below:
select * from
(
select top(3 + 6 - 1) * from mytable
except
select top(6 - 1) * from mytable
) as newtable
/*then select from selected rows as below:*/
select id,name from newtable where condition
how can I do this without view?