Da questo articolo web
Utilizzando questo esempio, il tuo aggiornamento dovrebbe essere questo:
update foo
set bar = bar - 1
where baz in
(
select baz from
(
select baz
from foo
where fooID = '1'
) as arbitraryTableName
)
Da questo articolo web
Utilizzando questo esempio, il tuo aggiornamento dovrebbe essere questo:
update foo
set bar = bar - 1
where baz in
(
select baz from
(
select baz
from foo
where fooID = '1'
) as arbitraryTableName
)