Hi everyone. I'm using MySQL Command Line Client on a Windows platform and I've created a table with 61 rows. When I perform the
select * from games;
query, I get the entire table, but it scrolls passed my window. Is there a way I can see the table one page at a time. I read somewhere that if I was on a Unix system I can pipe it to a "more" utility but I'm on a Windows machine so what should I do? Thanks for any help.
just a note offset starts at 0, so if you do select * from games limit 1,10; it's going to start at your second record and count 10 from there, limit 0,10 will start at the first record in the table
Bookmarks