Is it possible to create a view to update or insert data into a table?
I get the SQL update statement to work but can't save it as a view. When trying to save I get an error that there is incorrect syntax near the keyword "update". Is there a special syntax for Update and Insert Views?
Here is the "query" I am trying to save as a view.
UPDATE E
SET Toteligible = V.totalelig
FROM elpayout E INNER JOIN
vieweligible V ON E.initials = V.code
Thanks for any help,
Jenn
I get the SQL update statement to work but can't save it as a view. When trying to save I get an error that there is incorrect syntax near the keyword "update". Is there a special syntax for Update and Insert Views?
Here is the "query" I am trying to save as a view.
UPDATE E
SET Toteligible = V.totalelig
FROM elpayout E INNER JOIN
vieweligible V ON E.initials = V.code
Thanks for any help,
Jenn