Asked 6 years, 4 months ago
Viewed 16 times
0
SELECT * FROM Customers LIMIT 3,9;
I tried that way but it didn’t work
I believe that that will help you.
– Thiago Magalhães
SELECT TOP 50 * FROM table WHERE NOT ID in ( SELECT TOP 50 ID FROM table ORDER BY ID ASC ) a ORDER BY ID ASC;
– Evelyn Carvalho
This one I made But it doesn’t work the way I want it to
I want to start from the end on the 14000 line until what came after it
Browser other questions tagged database
I believe that that will help you.
– Thiago Magalhães
SELECT TOP 50 * FROM table WHERE NOT ID in ( SELECT TOP 50 ID FROM table ORDER BY ID ASC ) a ORDER BY ID ASC;
– Evelyn Carvalho
This one I made But it doesn’t work the way I want it to
– Evelyn Carvalho
I want to start from the end on the 14000 line until what came after it
– Evelyn Carvalho