I want to update table 1 field 1 with a value from table 2 field 1 and keep getting subquery returns more than one record.
update table 1 field 1;
from table 2 field 1;
where table1.key=table2.key
UPDATE table1 t1;
SET field 1 =;
(select t2.field1;
from table1 t1;
join table2 t2 on...
So I am a software technical support rep for my company, and I do data analysis and data cleanup when needed. I am having some issues with a SQL/FOX program. Using FoxPro 9.
UPDATE table1;
SET datefield1 =;
ICASE(;
t1.datefield2 < CTOD("04/23/2018") AND t1.datefield2 >...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.