有乙個表名為tb,欄位段名為name,資料型別nchar(20)。
1、修改字段型別:?
alter
table
tb
modify
name
nvarchar2(20);
2.修改原欄位名name為name_tmp
alter
table
tb rename
column
name
to
name_tmp;
3.增加乙個和原欄位名同名的字段name
alter
table
tb
add
name
varchar2(40);
4.將原欄位name_tmp資料更新到增加的字段name
update
tb
set
name
=trim(name_tmp);
5.刪除原欄位name_tmp
alter
table
tb
drop
column
name_tmp;
資料操作 增刪改查
select from 表名 例 查詢所有學生資料 select from students新增一行資料 格式一 所有字段設定值,值的順序與表中字段的順序對應 insert into 表名 values 例 插入乙個學生,設定所有欄位的資訊 insert into students values 0...
JQurey CRUD增刪改查操作
prepend 父元素將子元素追加到開頭 物件1.prepend 物件2 將物件2新增到物件1元秦內部,並且在開頭 prependto 物件1.prependto 物件2 將物件1新增到物件2內部,並且在開頭 after 新增元素到元素後邊 物件1.after 物件2 將物件2新增到物件1後邊。物件...
MySQL 增刪改查操作
toc 登入資料庫 mysql u root p123456 建立資料庫 creat database test 檢視所有資料庫 show databases 檢視資料庫中所有的資料表 show tables 選中資料庫 usedatabases 建立資料表 create table pet nam...