首頁  >  文章  >  資料庫  >  練習MySQL資料的插入、更新與刪除

練習MySQL資料的插入、更新與刪除

coldplay.xixi
coldplay.xixi轉載
2021-03-22 09:12:102619瀏覽

練習MySQL資料的插入、更新與刪除

案例:建立表格books,對資料進行插入、更新和刪除操作,掌握資料表的基本操作。 books表結構以及表格中的記錄如下表:
練習MySQL資料的插入、更新與刪除
案例操作過程:
(1)建立資料表books,並依照表8.1所示的結構定義各個欄位。
(2)將表8.2的記錄插入books表。分別使用不同的方法插入記錄。
(3)將小說類型(novel)的書的價格都增加5。
(4)將名稱為EmmaT的書的價格改為40,並將note說明改為drama。
(5)刪除庫存為0的記錄。

(免費學習推薦:mysql影片教學#)


(1 )、建立資料表books,並依照表8.1所示的結構定義各個欄位。
mysql> create table books    -> (
    -> id int(11) not null auto_increment primary key,
    -> name varchar(50) not null,
    -> authors varchar(100) not null,
    -> price float not null,
    -> pubdate year not null,
    -> discount float(3,2) not null,
    -> note varchar(255) null,
    -> num int(11) not null default 0
    -> );Query OK, 0 rows affected (0.05 sec)mysql> select * from books;Empty set (0.05 sec)

可以看到表為空,下面在表中插入記錄:

(2)、將表8.2中的記錄插入books表中。分別使用不同的方法插入記錄。

①指定所有欄位名稱插入記錄,SQL語句如下;

mysql> insert into books    -> (id,name,authors,price,pubdate,discount,note,num)
    -> values(1,'Tale of AAA','Dicks',23,'1995',0.85,'novel',11);Query OK, 1 row affected (0.05 sec)

②不指定欄位名稱插入記錄,SQL語句如下:

mysql> insert into books    -> values(2,'EmmaT','Jane lura',35,'1993',0.70,'joke',22);Query OK, 1 row affected (0.05 sec)mysql> select * from books;+----+-------------+-----------+-------+---------+----------+-------+-----+| id | name        | authors   | price | pubdate | discount | note  | num |+----+-------------+-----------+-------+---------+----------+-------+-----+|  1 | Tale of AAA | Dicks    |    23 |    1995 |     0.85 | novel |  11 ||  2 | EmmaT       | Jane lura |    35 |    1993 |     0.70 | joke  |  22 |+----+-------------+-----------+-------+---------+----------+-------+-----+2 rows in set (0.00 sec)

③同時插入多筆記錄

mysql> insert into books    -> values(3,'Story of Jane','Jane Tim',40,'2001',0.81,'novel',0),
    -> (4,'Lovey Day','George Byron',20,'2005',0.85,'novel',30),
    -> (5,'Old Land','Honore Blade',30,'2010',0.60,'law',0),
    -> (6,'The Battle','Upton Sara',33,'1999',0.65,'medicine',40),
    -> (7,'Rose Hood','Richard Kale',28,'2008',0.90,'cartoon',28);Query OK, 5 rows affected (0.05 sec)Records: 5  Duplicates: 0  Warnings: 0mysql> select * from books;+----+---------------+--------------+-------+---------+----------+----------+-----+| id | name          | authors      | price | pubdate | discount | note     | num |+----+---------------+--------------+-------+---------+----------+----------+-----+|  1 | Tale of AAA   | Dicks       |    23 |    1995 |     0.85 | novel    |  11 ||  2 | EmmaT         | Jane lura    |    35 |    1993 |     0.70 | joke     |  22 ||  3 | Story of Jane | Jane Tim     |    40 |    2001 |     0.81 | novel    |   0 ||  4 | Lovey Day     | George Byron |    20 |    2005 |     0.85 | novel    |  30 ||  5 | Old Land      | Honore Blade |    30 |    2010 |     0.60 | law      |   0 ||  6 | The Battle    | Upton Sara   |    33 |    1999 |     0.65 | medicine |  40 ||  7 | Rose Hood     | Richard Kale |    28 |    2008 |     0.90 | cartoon  |  28 |+----+---------------+--------------+-------+---------+----------+----------+-----+7 rows in set (0.00 sec)
(3)、將小說類型(novel)的書的價格都增加5。
mysql> update books    -> set price = price +5
    -> where note = 'novel';Query OK, 3 rows affected (0.05 sec)Rows matched: 3  Changed: 3  Warnings: 0mysql> select id,name,price,note    -> from books    -> where note = 'novel';+----+---------------+-------+-------+| id | name          | price | note  |+----+---------------+-------+-------+|  1 | Tale of AAA   |    28 | novel ||  3 | Story of Jane |    45 | novel ||  4 | Lovey Day     |    25 | novel |+----+---------------+-------+-------+3 rows in set (0.00 sec)
(4)、將名稱為EmmaT的書的價格改為40,並將note說明改為drama。
mysql> update books    -> set price=40,note='drama'
    -> where name = 'EmmaT';Query OK, 1 row affected (0.05 sec)Rows matched: 1  Changed: 1  Warnings: 0mysql> select name,price,note    -> from books    -> where name= 'EmmaT';+-------+-------+-------+| name  | price | note  |+-------+-------+-------+| EmmaT |    40 | drama |+-------+-------+-------+1 row in set (0.00 sec)
(5)、刪除庫存為0的記錄。
mysql> delete
    -> from books    -> where num = 0;Query OK, 2 rows affected (0.05 sec)mysql> select *
    -> from books    -> where num = 0;Empty set (0.00 sec)

幾個小問題

1、插入記錄時可以不指定欄位名稱嗎?

  • 不管使用哪一種insert語法,都必須給予values的正確數目。如果不提供欄位名,則必須給每個欄位提供一個值,否則將產生錯誤訊息。
  • 如果要在insert操作中省略某些字段,那麼這些字段需要滿足一定條件:該列定義為允許空值;或表定義時給出預設值,若不給出則使用預設值。

2、更新或刪除表時必須指定where子句嗎?

  • 所有的update和delete語句全都在where子句中指定了條件。如果省略where子句,則update或delete將會套用到表中所有的行。因此,除非確實打算更新或刪除所有記錄,否則請注意使用不含where子句的update或delete語句。
  • 建議在對錶進行更新和刪除操作之前,使用select語句確認需要刪除的記錄,以免造成無法挽回的結果。

相關免費學習推薦:mysql資料庫(影片)

以上是練習MySQL資料的插入、更新與刪除的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除