Hello,
In access db (2002),
How can I make the equivalent :
something like the pseudo code :
if not exists (
select ... from table_name) then
insert into table...
else
update table.
In Oracle it is :
begin
update table where id = ...
if sql%notfound then
insert into ...
end if;
end;
How can I do the above in MS-Access.
Need sample code, please.
Thanks :)
In access db (2002),
How can I make the equivalent :
something like the pseudo code :
if not exists (
select ... from table_name) then
insert into table...
else
update table.
In Oracle it is :
begin
update table where id = ...
if sql%notfound then
insert into ...
end if;
end;
How can I do the above in MS-Access.
Need sample code, please.
Thanks :)
Comment