Two tables – tblOne and tblTwo have identical fields. tblOne has fuller records than tblTwo.
I want to say in sql (MySql to be specific)
INSERT INTO tblTwo (Address, City, etc)
SELECT Address, City, etc
FROM tblOne
WHERE tblTwo.Sname = tblOne.Sname;
WHERE-wise, this isn’t the way, I now know. But I can’t find any examples of how to. Be very grateful for advice, experts.
I want to say in sql (MySql to be specific)
INSERT INTO tblTwo (Address, City, etc)
SELECT Address, City, etc
FROM tblOne
WHERE tblTwo.Sname = tblOne.Sname;
WHERE-wise, this isn’t the way, I now know. But I can’t find any examples of how to. Be very grateful for advice, experts.