溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MySQL數(shù)據(jù)庫之?dāng)?shù)據(jù)data基本操作是什么

發(fā)布時間:2022-05-05 09:21:59 來源:億速云 閱讀:375 作者:zzz 欄目:開發(fā)技術(shù)

這篇文章主要講解了“MySQL數(shù)據(jù)庫之?dāng)?shù)據(jù)data基本操作是什么”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“MySQL數(shù)據(jù)庫之?dāng)?shù)據(jù)data基本操作是什么”吧!

插入操作

-- 方式一:插入指定字段數(shù)據(jù)(推薦使用)
insert into 表名 [(字段列表)] values (對應(yīng)列數(shù)據(jù));
-- 方式二:插入所有字段對應(yīng)的數(shù)據(jù)
insert into 表名 values (對應(yīng)列數(shù)據(jù));

示例:

create table tb_teacher(
 name varchar(10),
 age int
);
-- 插入一條數(shù)據(jù)
insert into tb_teacher (name, age) values ('Jack', 24);

-- 字段名和值需要一一對應(yīng)
insert into tb_teacher (age, name) values (25, 'Tom');

-- 可以只插入部分字段數(shù)據(jù)
insert into tb_teacher (name) values ('Steve');

-- 插入全部字段對應(yīng)的數(shù)據(jù),此時值列表需要對應(yīng)表結(jié)構(gòu)
insert into tb_teacher values ('Jery', 23);

查詢操作

-- 查詢表中全部字段數(shù)據(jù)
select * from 表名;
-- 查詢表中部分字段數(shù)據(jù)
select 字段列表 from 表名;
-- 簡單條件查詢數(shù)據(jù)
select 字段列表/* from 表名 where 字段名 = 值;

示例:

-- 查詢所有數(shù)據(jù)
select * from tb_teacher;
+-------+------+
| name  | age  |
+-------+------+
| Jack  |   24 |
| Tom   |   25 |
| Steve | NULL |
| Jery  |   23 |
+-------+------+
-- 指定字段
select name from tb_teacher;
+-------+
| name  |
+-------+
| Jack  |
| Tom   |
| Steve |
| Jery  |
+-------+
-- 限制條件, 年齡==23
select name from tb_teacher where age = 23;
+------+
| name |
+------+
| Jery |
+------+

刪除操作

-- 如果沒有條件,會刪除所有數(shù)據(jù)
delete from 表名 [where 條件];
-- 刪除年齡為23的數(shù)據(jù)
delete from tb_teacher where age = 23;
select * from tb_teacher;
+-------+------+
| name  | age  |
+-------+------+
| Jack  |   24 |
| Tom   |   25 |
| Steve | NULL |
+-------+------+

更新操作

-- 如果沒有where條件,將會更新表中所有的值
update 表名 set 字段名 = 新值 [where 條件];

示例:

-- 更新Tom的年齡為26
update tb_teacher set age = 26 where name = 'Tom';
select * from tb_teacher;
+-------+------+
| name  | age  |
+-------+------+
| Jack  |   24 |
| Tom   |   26 |
| Steve | NULL |
+-------+------+

感謝各位的閱讀,以上就是“MySQL數(shù)據(jù)庫之?dāng)?shù)據(jù)data基本操作是什么”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對MySQL數(shù)據(jù)庫之?dāng)?shù)據(jù)data基本操作是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI