phpMyAdmin: change default number of rows displayed?

前端 未结 10 1278
我在风中等你
我在风中等你 2020-12-09 01:36

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

10条回答
  •  悲哀的现实
    2020-12-09 02:21

    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!

提交回复
热议问题