Hello,
I've created the query:
SELECT "Clients"."Out" FROM "Clients" LEFT OUTER JOIN "Clients interested" ON "Clients"."Id" = "Clients interested"."Id" WHERE "Clients interested"."Out" = 0
It works perfectly. (803 registers)
BUT, now I want to update the obtained recordset (803 registers with the "Clients"."Out" field) to:
UPDATE [Recordset] SET [Field "Clients"."Out"] = 0
How could I build the complete query in ONLY ONE, joining the keywords SELECT and UPDATE?
JUST ONE QUERY!
Thank you very much!
I've created the query:
SELECT "Clients"."Out" FROM "Clients" LEFT OUTER JOIN "Clients interested" ON "Clients"."Id" = "Clients interested"."Id" WHERE "Clients interested"."Out" = 0
It works perfectly. (803 registers)
BUT, now I want to update the obtained recordset (803 registers with the "Clients"."Out" field) to:
UPDATE [Recordset] SET [Field "Clients"."Out"] = 0
How could I build the complete query in ONLY ONE, joining the keywords SELECT and UPDATE?
JUST ONE QUERY!
Thank you very much!