have some theory, i think it should work, i havnt figure it out yet. I couldnt get my sql running.
I just need a SQL statement that
SELECT TOP 10 records
FROM table
WHERE records NOT (SELECT TOP 10 from table)
its not working and it wont run as i expect it.
select top 10 * employees
from employees
where NOT employee_id IN (select top 10 employee_id from employee)
no views pls. just sql statement.
basically the query means select the next 10 records after the first top 10 records.
Start Free Trial