資料表操作

2021-10-02 14:38:07 字數 772 閱讀 9791

create table 表名(

欄位名 型別 約束,

欄位名 型別 約束

...)

例:建立學生表,字段要求如下:

姓名(長度為10)

create table students(

name varchar(10)

)

例:建立學生表,字段要求如下:

姓名(長度為10), 年齡

create table students(

name varchar(10),

age int unsigned

)

例:建立學生表,字段要求如下:

姓名(長度為10), 年齡,身高(保留小數點2位)

create table students(

id int unsigned primary key auto_increment,

name varchar(10),

age int unsigned,

height decimal(5,2)

)

格式一:drop table 表名

格式二:drop table if exists 表名

例:刪除學生表

drop table students

或drop table if exists students

資料表操作

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 ...

資料表的操作

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

MySQL資料表操作

建立資料表 create table 資料表名示例 create temporary table if not exists 資料表名 col name type 完整性約束條件 col name type 完整性約束條件 table options select statement 建立使用者表 ...