2 資料表的操作

2021-10-12 10:10:26 字數 936 閱讀 5302

show tables ;
create table table_test(

id int unsigned unique primary key not null auto_increment,

name varchar(30) not null,

age tinyint unsigned,

high decimal(5,2),

gender enum("男","女","中性","保密") default "保密",

cls_id int unsigned

);

desc table_test;
insert into python_test values (0, "老王", 23, 187, "男", 2);
# 新增字段

alter table studuent add brithday datetime;

# 修改欄位-不重新命名版

alter table studuent modify brithday date;

# 修改欄位-重新命名版

alter table studuent change brithday brith date default "2000-01-01";

# 刪除字段

alter table studuent drop brith; #一般不會刪除資料,多做加法,少做減法

# 刪除表中的資料 不刪除表

delete from studuent where id > 3;

# 刪除表

drop table studuent;

show create table studuent;

2 資料表的基本操作 建立資料表

在資料庫中,資料表是資料庫最重要 最基本的操作物件,是資料儲存的基本單位。建立資料表的過程就是規定資料列的屬性的過程,同時也是實施資料完整性約束的過程。建立資料表的語法形式 create table 表名 欄位名1 資料型別 列級別約束 預設值 欄位名2 資料型別 列級別約束 預設值 表級別約束 其...

資料表的操作

表是組成資料庫的基本的元素 表的基本操作有 建立 檢視 更新 刪除。表中的資料庫物件包含列 索引 觸發器。列 屬性列,建立表時指定的名字和資料型別,索引 根據制定的資料庫表建立起來的順序,提供了快速訪問資料的途徑且可以監督表的資料 觸發器 指使用者定義的事務命令集合,當對乙個表中的資料進行插入 更行...

資料表的操作

1.顯示所有的資料表 mysql show tables from 資料庫名 2.顯示表結構 mysql desc 表名 或者 describe 表名 3.顯示資料表建立語句 mysql show create table 表名 mysql show create table 表名 g 可以更清晰的...