本文主要內容:
update更新,batch批次更新
set sql_safe_updates=0;# 常规updateupdate springdemo.users set pwd=nickname where id=id;
insert 資料到表中,將表中資料插入另一個表中
INSERT INTO tb_name(col1, col2) VALUES ("hyq","M");# 例如insert into teacher(name, age) values('jack ma', 32);
INSERT INTO tb_al_sample (biz_id,sample_path) SELECT 3,FILE FROM idcard_image WHERE FILE IS NOT NULL;insert ignore忽略重複資料插入報錯問題
insert ignore into tb_name (title, introduction) VALUES (%s, %s)
以上是mysql中update與insert常用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!