ホームページ  >  記事  >  データベース  >  MySQL データの挿入、更新、削除を練習する

MySQL データの挿入、更新、削除を練習する

coldplay.xixi
coldplay.xixi転載
2021-03-22 09:12:102651ブラウズ

MySQL データの挿入、更新、削除を練習する

ケース: Books テーブルを作成し、データを挿入、更新、削除し、データ テーブルの基本操作をマスターします。 Books テーブルの構造とテーブル内のレコードは次のとおりです。
MySQL データの挿入、更新、削除を練習する
ケースの操作プロセス:
(1) データ テーブル Books を作成し、図に示す構造に従って各フィールドを定義します。表8.1。
(2) 表 8.2 のレコードを Books テーブルに挿入します。さまざまな方法を使用してレコードを挿入します。
(3) 小説系書籍の価格を5倍にします。
(4) EmmaT という本の価格を 40 に変更し、メモの説明をドラマに変更します。
(5) 在庫が0のレコードを削除します。

(無料学習の推奨事項: mysql ビデオ チュートリアル)


(1 )、データテーブルブックを作成し、表 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)

③Insert同時に複数のレコード

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). 小説タイプの本の価格を 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 に変更し、メモの説明をドラマに変更します。
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. レコードを挿入するときにフィールド名を指定できませんか?

  • どの挿入構文を使用しても、値正しい番号を指定する必要があります。フィールド名を指定しない場合は、各フィールドに値を指定する必要があります。値を指定しないと、エラー メッセージが生成されます。
  • 挿入操作で特定のフィールドを省略する場合、これらのフィールドは特定の条件を満たす必要があります: NULL 値を許可するように列が定義されているか、そうでない場合はテーブルの定義時にデフォルト値が指定されます。指定された場合は、デフォルト値が使用されます。

2. テーブルの更新や削除の際、where句の指定は必要ですか?

  • すべての update ステートメントと delete ステートメントでは、where 句で条件を指定します。 where 句を省略すると、テーブル内のすべての行に更新または削除が適用されます。したがって、本当にすべてのレコードを更新または削除するつもりがない限り、where 句なしで update ステートメントまたは delete ステートメントを使用する場合は注意してください。
  • 元に戻せない結果を避けるために、テーブルを更新および削除する前に、select ステートメントを使用して削除する必要があるレコードを確認することをお勧めします。

関連する無料学習の推奨事項: mysql データベース(ビデオ)

以上がMySQL データの挿入、更新、削除を練習するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はcsdn.netで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。