Not sure if phpMyAdmin can do what you want, but you can get exactly that using mysql hint. Here's how:
Assuming you only need a table table my_table.
mysql, (-u) (-p), . , bin mysql ( Windows, mysql PATH),
mysql,
, :
show databases;
:
use this_database;
, ( ):
show tables;
, / , my_table, :
describe my_table;
ASCII-- , :
+--------------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+--------------------+--------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| name | varchar(50) | NO | | NULL | |
| location_id | int(11) | NO | MUL | NULL | |
| manager_id | int(11) | NO | MUL | NULL | |
| other | varchar(100) | YES | | NULL | |
| creation_timestamp | datetime | NO | | NULL | |
| is_active | tinyint(1) | NO | | NULL | |
+--------------------+--------------+------+-----+---------+----------------+
+ , , , , , , SELECT. , - :
SELECT * FROM stores LIMIT 2;
:
+----+------------+-------------+------------+-------+---------------------+-----------+
| id | name | location_id | manager_id | other | creation_timestamp | is_active |
+----+------------+-------------+------------+-------+---------------------+-----------+
| 1 | Good Store | 1 | 1 | | 2012-06-17 19:14:15 | 1 |
| 2 | Neu Store | 2 | 1 | | 2012-06-29 05:14:24 | 1 |
+----+------------+-------------+------------+-------+---------------------+-----------+
.. mysql, , , ( ), SO, /; linux/unix , Control+Shift+C, SO. , , , copy mark , , SO.
, SO, , SO, , , {}, . , 4 .
, , automatic, , , script, - xclip mysql, , automatically: -)