我有兩個不同的表,但列的名稱略有不同。 我想從1個表中獲取信息並將其放入另一個表中。只有當表1中的「信息字段」不爲空時,我才需要將表1中的信息放入表2中。表2在創建任何東西時都有唯一的ID,因此插入的任何內容都需要獲取下一個可用的ID號。將數據從一個表插入另一個表
表1
category
clientLastName
clientFirstName
incidentDescription
info field is not null then insert all fields into table 2
表2
*need a unique id assigned
client_last_name
client_first_name
taskDescription
category
如果你正面臨語法相關的問題,然後閱讀這篇文章。 http://stackoverflow.com/questions/25969/sql-insert-into-values-select-from – adatapost
@Jon我正要提出同樣的事情。 OP,你已經嘗試了什麼? – tom502