quite possibly a simple question, but i can't seem to find the answer.
I'd like to say "give me the first 50 results of query x". MySQL does it like this:
I'm hoping for something that will actually limit the number of rows I ask for, not simply ask for everything and then limit the number of rows I display.
Liam Morley
lmorley@wpi.edu
"light the deep, and bring silence to the world.
light the world, and bring depth to the silence."
I'd like to say "give me the first 50 results of query x". MySQL does it like this:
Code:
SELECT * FROM table LIMIT 5,10; #this will retrieve rows 6 through 15
Liam Morley
lmorley@wpi.edu
"light the deep, and bring silence to the world.
light the world, and bring depth to the silence."