S
Sean
I have two linked tables in my db. I need to pull all the values from
tableA and insert into tableB where tableA.id = tableB.id
Here's my SQL query, which isn't working:
INSERT INTO tblA
SELECT insthick FROM tblB
WHERE tblA.COMP_ID = tblB.COMP_ID
Does anyone have any suggestions?
Thanks
tableA and insert into tableB where tableA.id = tableB.id
Here's my SQL query, which isn't working:
INSERT INTO tblA
SELECT insthick FROM tblB
WHERE tblA.COMP_ID = tblB.COMP_ID
Does anyone have any suggestions?
Thanks