MySQL基本操作 資料操作

2021-09-25 20:45:56 字數 1133 閱讀 4679

刪除資料

更新字段

1.插入指定字段值

-- insert into 表名(字段列表)values (對應字段值列表);

2.向表中所有字段插入資料

-- insert into 表名 values (按表結構寫對應資料);

insert into my_teacher values ("liwei",20);

1.查詢表中全部資料

--select * from 表名;

2.只查詢表中部分字段

-- select 字段 from 表名;

-- select 字段列表/* from 表名 where 欄位名=值;

select name from my_teacher where age = 30; --

-- delete from 表名 [where 條件]; 沒有新增條件,系統將刪除該錶所有資料

delete from my_teacher where age = 30;

update 表名 set 欄位名 =  新值 [where 條件];//沒有條件則修改所有指定字段。

update my_teacher set age = 28 where name = "liwei";

MySQL 基本操作 資料庫操作和表操作

檢視所有表 show tables like xx show tables from 庫名 檢視表機構 show create table 表名 資訊更詳細 desc 表名 describe 表名 explain 表名 show columns from 表名 like pattern show t...

MySQL基本操作 資料控制語言 DCL

資料控制語言 dcl 檢視授權 格式 show grants for user host 示例 show grants for root localhost 說明 檢視當前登入使用者授權時可以不指定使用者及主機 建立使用者 格式 create user user host identified by...

MySQL基本操作 資料庫和表

資料庫的操作 mysql中,資料庫的基本操作有 建立 檢視 選擇以及刪除4種。mysql表的操作 建立表語法 create table table name column name,column type example create table if not exists runoob tbl r...