資料庫的表查詢改刪

2021-09-19 16:54:44 字數 1189 閱讀 4101

選擇資料庫

use mytest;

create tablemytest(

id int primary key auto_increment unsigned

)engine=innodb;

alter table student engine=innodb;

– 檢視資料庫當中有哪些表

– 檢視表結構

show create table student;

– 檢視資料表字段

desc student;

– 檢視資料表的結構

show columns from student from mytest;

show columns from mytest.student;

– 新增字段

alter table student add address varchar(100);

alter table student add telphone char(11) aftername;

alter table student add *** char(1) first;

– 修改欄位名稱及型別

alter table student changetelphonetelchar(11);

– 修改欄位的資料型別

alter table student modifynamevarchar(10);

– 刪除字段

alter table student drop***;

– 更改資料表的名稱

alter table student renamemystudent;

rename table mystudent to student;

– 刪除資料表

drop table if exists student;

資料庫08表的複製,改,刪

表的複製 語法 create table 表名 as select語句 將查詢結果當做表建立出來。將查詢結果插入到一張表中 insert into dept1 select from dept 將一張表中的dept查詢結果當做資料插入前面表中 修改資料 update 注意當中標點符號 語法格式 up...

修改,刪除資料庫表

修改表名 舊的表名tehels 新的表名teacher alter table tehels rename as teacher add 欄位名 列屬性 增加表的字段 alter table 表名 alter table teacher add id int 10 修改表的字段 重新命名,修改約束 ...

資料庫 表之增加 查詢 修改 刪除操作

一 運算子 字串是用單引號 資料庫 現比較用的是 不是雙等號 邏輯與 and 邏輯或 or 邏輯非 not 二 crud操作 1 c create 增加 建立,向資料庫新增資料 格式 insert into 表名 values 列值1,列值2,列值n insert into fruit values...