>데이터 베이스 >MySQL 튜토리얼 >MySQL获取表格信息_MySQL

MySQL获取表格信息_MySQL

WBOY
WBOY원래의
2016-05-30 17:11:111038검색

MySQL获取表格信息

mysql> use test;
Database changed
mysql> show table status;
+---------------+--------+---------+------------+------+----------------+-------
------+-----------------+--------------+-----------+----------------+-----------
----------+-------------+------------+-----------------+----------+-------------
---+---------+
| Name          | Engine | Version | Row_format | Rows | Avg_row_length | Data_l
ength | Max_data_length | Index_length | Data_free | Auto_increment | Create_tim
e         | Update_time | Check_time | Collation       | Checksum | Create_optio
ns | Comment |
+---------------+--------+---------+------------+------+----------------+-------
------+-----------------+--------------+-----------+----------------+-----------
----------+-------------+------------+-----------------+----------+-------------
---+---------+
| emp           | InnoDB |      10 | Compact    |    0 |              0 |
16384 |               0 |            0 |         0 |           NULL | 2015-09-16
 16:18:06 | NULL        | NULL       | utf8_general_ci |     NULL |
   |         |
| stu_view      | NULL   |    NULL | NULL       | NULL |           NULL |
 NULL |            NULL |         NULL |      NULL |           NULL | NULL
          | NULL        | NULL       | NULL            |     NULL | NULL
   | VIEW    |
| t_depart_info | InnoDB |      10 | Compact    |    0 |              0 |
16384 |               0 |            0 |         0 |           NULL | 2015-08-23
 22:12:02 | NULL        | NULL       | utf8_general_ci |     NULL |
   |         |
| t_stu_info    | InnoDB |      10 | Compact    |    6 |           2730 |
16384 |               0 |            0 |         0 |              9 | 2015-08-23
 21:36:02 | NULL        | NULL       | utf8_general_ci |     NULL |
   |         |
| t_tea_info    | InnoDB |      10 | Compact    |    0 |              0 |
16384 |               0 |        16384 |         0 |              1 | 2015-08-23
 21:39:53 | NULL        | NULL       | utf8_general_ci |     NULL |
   |         |
+---------------+--------+---------+------------+------+----------------+-------
------+-----------------+--------------+-----------+----------------+-----------
----------+-------------+------------+-----------------+----------+-------------
---+---------+
5 rows in set (0.00 sec)

mysql>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.