如果~要把這個表的資料 補到另一個表去,而且是沒有的才補~
語法要怎麼下咧~
INSERT INTO Ping (SN) SELECT SN FROM record WHERE SN NOT IN(select SN from Ping);
先把~待補資料的表~全部查出來~
再比較兩個比~哪些是沒有的~
最後再完成insert into的動作~
解析難嗎?不難~但是~我之前只會用php語法和暫存來處理~
隨機文章
- htc提供一下手機原廠ROM這麼難嗎? (2013-12-26)
- 一頭牛被扒2次皮 從微軟買skype為例 (2012-07-12)
- 遇到DDOS大家也無能為力 (2011-06-22)
- 微軟 Windows 10 我真的看不透你 (2019-10-05)
- 莊主秘~莊什麼斯文~下台了吧! (2008-03-17)
INSERT INTO wp_mail (ID) SELECT ID FROM wp_getinfo WHERE ID NOT IN(select ID from wp_mail)
insert into wp_mail_data(ID,Title,Content,Url) select ID,post_title,post_content,to_ping from wp_posts where ID not in (select ID from wp_mail_data);