I'd like to display result of my queries page by page, for example I have a Mysql db with a lot of tables and I need to see the result of show tables;
as one screen at a time, similar to more command. I know I can do a mysql mydb -u username -p -e 'show tables;' | more
but I need it inside inside db shell (MySQL Command-Line Tool).
So simple but I couldn't find it