1. 程式人生 > >表字段與表結構的操作區別

表字段與表結構的操作區別

sel col set let int delet 。。 delete 字段

    表字段(alter table 表名)    表記錄
增:        add              insert into 表名 。。。
刪:        drop             delete from 表名 。。。
改:        modify            updata 表名 set 。。。
查:        desc 表名:        select * from 表名 。。。

表字段與表結構的操作區別