zoukankan      html  css  js  c++  java
  • mysql 显示表结构

     例子

    mysql> show columns from table1;
    +------------+------------------+------+-----+---------+----------------+
    | Field      | Type             | Null | Key | Default | Extra          |
    +------------+------------------+------+-----+---------+----------------+
    | name_new   | char(32)         | YES  |     | NULL    |                |
    | transactor | varchar(10)      | NO   |     | NULL    |                |
    | pid        | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
    | order_date | datetime         | YES  |     | NULL    |                |
    +------------+------------------+------+-----+---------+----------------+
    4 rows in set (0.00 sec)

     例子

    mysql> desc table1;
    +------------+------------------+------+-----+---------+----------------+
    | Field      | Type             | Null | Key | Default | Extra          |
    +------------+------------------+------+-----+---------+----------------+
    | name_new   | char(32)         | YES  |     | NULL    |                |
    | transactor | varchar(10)      | NO   |     | NULL    |                |
    | pid        | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
    | order_date | datetime         | YES  |     | NULL    |                |
    +------------+------------------+------+-----+---------+----------------+
    4 rows in set (0.00 sec)

     例子

    mysql> show create table table1;
    +--------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
    | Table  | Create Table                                                                                                                                                                                                                                                            |
    +--------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
    | table1 | CREATE TABLE `table1` (
      `name_new` char(32) DEFAULT NULL,
      `transactor` varchar(10) NOT NULL,
      `pid` int(10) unsigned NOT NULL AUTO_INCREMENT,
      `order_date` datetime DEFAULT NULL,
      PRIMARY KEY (`pid`)
    ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 |
    +--------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
    1 row in set (0.00 sec)

  • 相关阅读:
    重新想象 Windows 8 Store Apps (32) 加密解密: 非对称算法, 数据转换的辅助类
    《C#编程极限》目录
    《软件设计精要与模式》完稿(原名《软件设计之道》)
    《软件设计之道》正式更名为《软件设计精要与模式》
    《软件设计精要与模式》各篇之篇首语
    Visual Studio 2005单元测试中关于外部文件的问题解决
    Web Service Software Factory
    Windows下IIS+PHP 5.2的安装与配置
    规划你的C#程序——《C#编程极限》第一章
    《软件设计精要与模式》前言
  • 原文地址:https://www.cnblogs.com/sea-stream/p/11300363.html
Copyright © 2011-2022 走看看