Append value into multi-valued field if table match

后端 未结 1 1285
感情败类
感情败类 2021-01-29 06:17

I have two tables. A master table, and a source table. Inside the master table I have a multi-value field named \'completed\' with [Applied, Pledged, Transcripts]. What I want t

1条回答
  •  没有蜡笔的小新
    2021-01-29 06:48

    Consider INNER JOIN instead of WHERE with a SELECT clause instead of VALUES.

    INSERT INTO Contacts (Completed.[Value])
    SELECT 'Pledged' AS Data
    FROM Source INNER JOIN Contacts ON Source.Email = Contacts.Email;
    

    0 讨论(0)
提交回复
热议问题