I have a table in which I need to update certain rows.
the key field in the table is Proj_ID.
another process creates a table that lists projects that need updating.
how do I write some SQL to do this.
the script needs to be something like.
UPDATE <table1>
SET <table1>.<value> = "CLI"
WHERE <table1>.Proj_ID In <table containing list of project ids>
this syntax doesn't seem to work though.
any ideas?
thanks,
Matt
the key field in the table is Proj_ID.
another process creates a table that lists projects that need updating.
how do I write some SQL to do this.
the script needs to be something like.
UPDATE <table1>
SET <table1>.<value> = "CLI"
WHERE <table1>.Proj_ID In <table containing list of project ids>
this syntax doesn't seem to work though.
any ideas?
thanks,
Matt