在mysql中要向數據庫中保存數據我們最常用的一種方法就是直接使用Insert into語句來實現了,下面我來給大家詳細介紹Insert into語句用法
廣平網站建設公司成都創新互聯,廣平網站設計制作,有大型網站制作公司豐富經驗。已為廣平成百上千提供企業網站建設服務。企業網站搭建\外貿營銷網站建設要多少錢,請找那個售后服務好的廣平做網站的公司定做!
INSERT用于向一個已有的表中插入新行。INSERT…VALUES語句根據明確指定的值插入行。讓我們先來看一下insert語句標準的定義,放在[]內的都是可以省略的:
語法
INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]
[INTO] tbl_name [(col_name,...)]
VALUES ({expr | DEFAULT},...),(...),...
[ ON DUPLICATE KEY UPDATE col_name=expr, ... ]
實例
create table links (name varchar(255) not null default '', address varchar(255) not null default '');
最簡單的插入方法
代碼如下
復制代碼
Mysqlinsert into worker values(‘tom’,’tom@yahoo.com’),(‘paul’,’paul@yahoo.com’);
或
insert into links values('jerichen','gdsz');
養成好習慣,插入的時候把字段表也帶上;
INSERT?INTO?`tb_column`?(`columnId`,?`columnName`,?`columnDisc`,?`columnOrder`)?
VALUES?
('1',?'新聞',?'國內國外新聞',?'12'),?
('2',?'財經',?'關注q',?'7'),?
('3',?'娛樂',?'關注',?'14'),?
('4',?'體育',?'關注新聞',?'6'),?
('5',?'讀書',?'讀書內容',?'5');
insert into是mysql中最常用的插入語句,它有6種寫法。
如果插入的記錄是數字的話要在數字的逗號后面加n:
通過以上實例我們可以看到insert into語句只能向原表中插入于其字段對應的數據,那么能不能通過insert into語句來把其他表的數據插入到原表中呢:
在MySQL中set方法:
ModifyStatement.Set Method 修改語句 set方法
Sets key and value. 設置鍵和值。
由于insert into語句是一個插入性的語句,所以它的功能要么向指定的表插入數據
也許你看到這個SQL語句是正確的,就覺得這樣應該也可以:
mysql mysql insert into 4a set sname=4ainall.sname;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mysql insert into 4a set sname=4ainall.sname' at line 1
或者這樣也可以:
mysql mysql insert into 4a set sname="趙六";
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mysql insert into 4a set sname="趙六"' at line 1
然后這樣也是不可用:
mysql insert into 4a select * from 4ainall set sname=4ainall.sname;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'from 4ainall set sname=4ainall.sname' at line 1
可以看出由于select是作用于4inall這個表的,而set方法也只能在select語句中,這就直接導致set方法只能作用于4inall這個表,而無法作用于4a這個表。
但是如果我們不用select語句的話編譯器又怎么會知道4inall表中的數據在哪里?
顯然select是用于查的而set則是一個用于改的方法,兩者無法結合在一起——insert into set語句當然也不能用于將其他表的數據插入到原表中了。
網頁標題:mysql怎么添加語句 mysql添加數據語句怎么寫
轉載注明:http://vcdvsql.cn/article32/dopjipc.html
成都網站建設公司_創新互聯,為您提供全網營銷推廣、面包屑導航、網站排名、外貿網站建設、網站維護、網站收錄
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯