建立刪除表

2021-05-25 19:11:41 字數 418 閱讀 9715

建立表

user studb

gocreate  table stuinfo   建立學員資訊表

(stuname varchar(20) not null, 學員姓名,資料型別varchar(20),非空

stuno char(6) not null,   學號,資料型別char(6),非空

stuage int not null,    年齡,資料型別int,非空

stuid numeric(18,0),   身份證號,資料型別numeric(18,0)

stuseat smallint identity(1,1), 座位編號,資料型別smallint,標識列,從1開始遞增

stuaddress text    住址,資料型別text)go

刪除表drop table stuinfo

MySql 表 建立表 刪除表 修改表

一 建立表 建立表語法 create table table name field1 datatype,field2 datatype,field3 datatype character set 字符集 collate 校驗規則 engine 儲存引擎 預設儲存引擎 mysql create tab...

mysql建立表有則刪除 MySQL建立表和刪除表

建立表 簡單的方式 create table person number int 11 name varchar 255 birthday date 或者是create table if not exists person number int 11 name varchar 255 birthda...

建立,修改和刪除表

1 表的建立 1 建立表,包含非空和預設值約束 包含非空約束的列,當在新增資料時,如果該列值為null,則資料庫會報錯,新增失敗。非空約束避免了由於使用者的誤操作導致的資料不完整性。2 向表中新增資料 執行結果 有結果可知,對於允許為空的字段birthday,在沒有插入任何資料的情況下,預設為nul...