码迷,mamicode.com
首页 > 数据库 > 详细

Mysql 数据库表操作

时间:2017-09-14 14:58:46      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:mysql   查看   约束   des   type   tab   change   建表   weight   

    1  创建表:
    
    create table table_name (
    
           filed   字段类型    [完整性约束],
           filed   字段类型    [完整性约束],
           filed   字段类型    [完整性约束],
    
    );
    
    
    2 查看表
    
       
      desc table_name;  查看表结构
      
      show tables; 是该数据库下所有的表名
      
      show create table table_name ; 查看数据库的表创建信息
      
      
     
    3 修改表:
    
       
       alter table table_name   add       field   type 完整性约束
       alter table table_name   modify    field   type 完整性约束
       alter table table_name   change    field   type 完整性约束
       alter table table_name   drop      field   type 完整性约束
       
     
      
    4 删除表

      drop table tab_name;
    

 

Mysql 数据库表操作

标签:mysql   查看   约束   des   type   tab   change   建表   weight   

原文地址:http://www.cnblogs.com/liuxiaowei/p/7520346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!