本篇內(nèi)容主要講解“MySQL怎么在表中插入數(shù)據(jù)”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“mysql怎么在表中插入數(shù)據(jù)”吧!
創(chuàng)新互聯(lián)是一家專注于網(wǎng)站設(shè)計(jì)制作、網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),利川網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)10余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:利川等地區(qū)。利川做網(wǎng)站價(jià)格咨詢:18982081108
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í)的順序增加數(shù)據(jù),同樣可以一次插入多條數(shù)據(jù)。
-- 語法 insert into 表名 values(字段1的值, 字段2的值...); -- 具體操作 -- 如果沒有按照創(chuàng)建表時(shí)字段的順序和數(shù)量就會出現(xiàn)數(shù)據(jù)錯(cuò)亂和報(bào)錯(cuò) 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ù)”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!