修改表的結構 更新資料

2021-08-21 10:25:50 字數 475 閱讀 3251

#######修改表的結構 

##1.新增一條新的字段

alter table student

add 專業 char(30);

##2.改變原有欄位的資料型別

alter table course

modify 學分 smallint;

##3.刪除某乙個字段

alter table student

drop column 專業;

##4.更改表的名字

alter table student

rename as stu;

-- 注意新增欄位和刪除字段不同,乙個需要指明column乙個不需要 

#########更新資料

update student set 出生日期='1995-02-01' where 姓名='kylin';

mysql更新表結構 mysql更新資料表結構命令

mysql中alter命令的用法,用於編輯表結構 修改表名alter table test rename test1 修改字段型別alter table employee change depno depno int 5 not null 加索引alter table 表名 add index 索引...

資料庫表的更新和修改資料

select from class 修改 更新一列 update 表名 set 列1 值1,列2 值2 更新一部分資料 update 表名 set 列1 值1,列2 值2 where 列名 值 update class set classname 123 修改或更新返回的是受影響的行數 可以加條件 ...

修改表結構

add column create definition first after column name 新增新字段 add index index name index col name,新增索引名稱 add primary key index col name,新增主鍵名稱 add unique...