By default, phpMyAdmin shows me 30 rows whenever I load a table (the query contains \"LIMIT 30\"). I generally want to see (up to) a few hundred rows.
Is there a way
phpMyAdmin has a config file called config.inc.php. You should be able to find appropriate setting in there.
just add the line : $cfg['MaxRows'] = 300; to /etc/phpmyadmin/config.inc.php (ubuntu)
The answers that refer to updating the MaxRows value in config.inc.php are correct, however, they fail to mention that this setting may be missing from config.inc.php.
The more complete procedure is as follows:
If the line is not present (it is missing in the default installation) then go to the bottom of the document and add the row
$cfg['MaxRows'] = 50;
You can set the value for the 'MaxRows' attribute can be set to any one of the following: 25, 50, 100, 250, 500
Notice that there is a file called config.sample.inc.php in the phpMyAdmin directory. If you open this, you will see a list of possible settings (and some explanations) that you can add to your config.inc.php file to further configure phpMyAdmin.
I hope that this helps.
I have no access to config.inc.php
To show more records I add to my query:
LIMIT 0,1000;
to show 1,000 records, from 0 to 1000.
You can change 1000 to any number according to your needs.
One example:
SELECT id, folio, sucursal
FROM equipos
WHERE sucursal = 3
ORDER BY folio
LIMIT 0,1000;
Greetings from Mexico!
Already Checked..... Simple Steps Follow:-
If you don't have access to the installation files, you should use Ricks answer with "click Settings
>> Main frame
>> Browse mode
and altering the value within Maximum number of rows to display
", but it can be that this does not take effect for other users. If so, you can:
phpmyadmin
pma_userconfig
username
)config_data
by adding e.g. "MaxRows":1000
to the contents in brackets, e.g. results in {"MaxRows":1000,"lang":"de"}
Hope that helps.