溫馨提示×

溫馨提示×

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

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

mysql怎么在表中插入數(shù)據(jù)

發(fā)布時間:2021-06-21 10:52:26 來源:億速云 閱讀:182 作者:chen 欄目:編程語言

本篇內(nèi)容主要講解“mysql怎么在表中插入數(shù)據(jù)”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習“mysql怎么在表中插入數(shù)據(jù)”吧!

1、按照字段和值的對應(yīng)關(guān)系插入。

-- 基本語法
insert into 表名 (字段1,字段2...) values (字段1的值, 字段2的值...), (字段1的值, 字段2的值...);
 
-- 具體操作
mysql> insert into info(id, name, sex, phone) values(1, 'python', 'male', 110), (2, 'java', 'female', 119);  -- 插入兩條數(shù)據(jù)
Query OK, 2 rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0
 
-- 查看表中所有數(shù)據(jù),由于age沒有插入對應(yīng)數(shù)據(jù),因此為null
mysql> select * from info;  
+------+--------+------+--------+-------+
| id   | name   | age  | sex    | phone |
+------+--------+------+--------+-------+
|    1 | python | NULL | male   |   110 |
|    2 | java   | NULL | female |   119 |
+------+--------+------+--------+-------+
2 rows in set (0.00 sec)

2、不指定字段值插入數(shù)據(jù),必須按照創(chuàng)建表時的順序增加數(shù)據(jù),同樣可以一次插入多條數(shù)據(jù)。

-- 語法
insert into 表名 values(字段1的值, 字段2的值...);
 
-- 具體操作
-- 如果沒有按照創(chuàng)建表時字段的順序和數(shù)量就會出現(xiàn)數(shù)據(jù)錯亂和報錯
mysql> insert into info values (3, 'php', 'male', 114);
ERROR 1136 (21S01): Column count does not match value count at row 1
 
-- 下述SQL語句就是正確的操作
mysql> insert into info values (3, 'php',10, 'male', 114),(4,'go',5,'male', 120);
Query OK, 2 rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0
 
mysql> select * from info;
+------+--------+------+--------+-------+
| id   | name   | age  | sex    | phone |
+------+--------+------+--------+-------+
|    1 | python | NULL | male   |   110 |
|    2 | java   | NULL | female |   119 |
|    3 | php    |   10 | male   |   114 |  
|    4 | go     |    5 | male   |   120 |
+------+--------+------+--------+-------+
4 rows in set (0.00 sec)

到此,相信大家對“mysql怎么在表中插入數(shù)據(jù)”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習!

向AI問一下細節(jié)

免責聲明:本站發(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