zoukankan      html  css  js  c++  java
  • mysql查表语句

    describe table_name;
    这个命令用来显示一个表格的结构
    +----------+-----------+------+-----+---------+-------+
    | Field    | Type      | Null | Key | Default | Extra |
    +----------+-----------+------+-----+---------+-------+
    | ID       | int(11)   | NO   | PRI | NULL    |       |
    | userName | char(20)  | NO   |     | NULL    |       |
    | password | char(20)  | NO   |     | NULL    |       |
    | niName   | char(20)  | NO   |     | NULL    |       |
    | sex      | char(10)  | NO   |     | NULL    |       |
    | phone    | char(20)  | YES  |     | NULL    |       |
    | address  | char(100) | YES  |     | NULL    |       |
    +----------+-----------+------+-----+---------+-------+
    
    和这个命令可以实现同样效果的是:
    show columns from table_name;
    
    
    show create table table_name;//显示某个表格被创建时所用的SQL语句
    
    create table user  | CREATE TABLE `user` (
      `ID` int(11) NOT NULL,
      `userName` char(20) NOT NULL,
      `password` char(20) NOT NULL,
      `niName` char(20) NOT NULL,
      `sex` char(10) NOT NULL,
      `phone` char(20) DEFAULT NULL,
      `address` char(100) DEFAULT NULL,
      PRIMARY KEY (`ID`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1 
    



  • 相关阅读:
    02-scrapy安装及目录结构
    drf结合sql server搭建后台管理系统
    drf连接sqlserver数据库
    drf xadmin
    drf goods设计
    drf user models设计
    什么是全文检索
    周进度总结
    程序员修炼之道阅读笔记(四)
    周进度总结
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/3036043.html
Copyright © 2011-2022 走看看