3 資料表的操作

2021-10-23 06:16:50 字數 498 閱讀 5060

使用的資料庫還是基於2.資料庫的操作jxgl

建立資料表

(1)圖形化介面方式建立,大家都會咱也不多說

(2)transact_sql語句建立

例:jxgl資料庫下建立學生表

use jxgl

gocreate table 學生

(學號 char(10),姓名 nvarchar(4) not null,性別 nchar(1),系別 nvarchar(10),高考入學成績 smallint)

管理資料表

例:在jxgl資料庫下修改學生表,增加少數民族否一列,為bit型別。然後在此表中刪除此列

use jxgl

goalter table 學生

add 少數民族否 bit

goalter table 學生 

drop column 少數民族否

go刪除資料表

例:在jxgl資料庫下刪除學生表

drop table 學生

go

資料表的操作

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

資料表的操作

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

資料表操作

1 建立資料表 create table if not exists table name column name data type,2 檢視資料表 show tables show tables from mysql 3 檢視資料表結構 show columns from tbl name 4 ...