MYSQL數據庫操作

基本增刪改查: 顯示錶的所有屬性:describe emp;desc emp; 字段增刪改: 增加表字段:alter table emp add column age int(5),  alter 改變更改   刪除表其中一項字段age:alter table emp drop column age,   字段改名:alter table emp change age age1 int(4),  
相關文章
相關標籤/搜索