在对表内容不变的情况 更改表的属性

 

A.   重命名表  
  下例将表   customers   重命名为   custs。  
   
  EXEC   sp_rename   'customers',   'custs'   
    
B.   重命名列  
  下例将表   customers   中的列   contact   title   重命名为   title。  
   
  EXEC   sp_rename   'customers.[contact   title]',   'title',   'COLUMN'   (我的   mysql 中不能使用)
 

C.删除列

ALTER TABLE 表名 DROP COLUMN 列名

D.添加列

ALTER TABLE  表名  ADD  列名   VARCHAR(20) NULL" 

你可能感兴趣的:(mysql,null,table)