G
Guest
I need to combine 2 sql commands:
UPDATE Test SET Test.Counter = [Test].[Counter]+1 WHERE [test].[id]=1;
Select Text.Counter where [test].[id]=1
in one dynamic sql statement.
n.b. i can't use the autocounter.
Is this possible
UPDATE Test SET Test.Counter = [Test].[Counter]+1 WHERE [test].[id]=1;
Select Text.Counter where [test].[id]=1
in one dynamic sql statement.
n.b. i can't use the autocounter.
Is this possible