如果表已經建立好tb_user
1.增加欄位stu_email,stu_blog
alter table tb_user add(stu_email varchar(50) default '[email protected]',stu_blog varchar(50));
2.刪除欄位stu_email:
alter table tb_user drop stu_email;
3.修改欄位名:
mysql:
alter table tb_user change stu_blog stu_blog varchar(100);
oracle:
alter table tb_user rename column stu_blog to blig varchar(100);
mysql給表的字段加索引
1 新增普通索引 alter table table name add index index name column 2 新增主鍵索引 alter table table name addprimary key column 3 新增唯一索引 unique alter table table na...
Oracle表的建立與增 刪 改 查
1.建立表 create talbe 表名 字段屬性 2.表的修改 1 新增列 alter table 表名 add 列名 列型別 default 值alter table stu add score number 4,1 default 60 2 修改列名 alter table 表名 renam...
MySQL筆記8 表的建立 增刪改
二 向表中插入資料 三 複製表 按照查詢結果建立新錶 四 將查詢結果插入一張表中 五 修改表中的資料 六 刪除表中的資料 七 刪除一整張表 語法 creat table 表名 資料型別 占用位元組數 說明int 4位元組整型 bigint 8位元組長整型,類似long float double 浮點...