A
Allen_N
I can't seem to get an update to work in an Access Project. It seems that ADO
doesn't support the UPDATE statement. So, I tried building a stored procedure
(using INSERT INTO) as shown in Help, but it does not alter any rows.
Here is the SQL:
INSERT INTO dbo.SuperssnInd (IND)
SELECT IND
FROM dbo.SuperssnInd
WHERE (ITEM = PARENT) AND (IND <> 'S')
I want to set IND to 'S' when ITEM = PARENT. The above code doesn't look
right to me, but the SQL Grid and Help are pretty useless in this situation.
Thanks!
doesn't support the UPDATE statement. So, I tried building a stored procedure
(using INSERT INTO) as shown in Help, but it does not alter any rows.
Here is the SQL:
INSERT INTO dbo.SuperssnInd (IND)
SELECT IND
FROM dbo.SuperssnInd
WHERE (ITEM = PARENT) AND (IND <> 'S')
I want to set IND to 'S' when ITEM = PARENT. The above code doesn't look
right to me, but the SQL Grid and Help are pretty useless in this situation.
Thanks!