De este artículo web
Usando este ejemplo, su actualización debería ser esta:
update foo
set bar = bar - 1
where baz in
(
select baz from
(
select baz
from foo
where fooID = '1'
) as arbitraryTableName
)
De este artículo web
Usando este ejemplo, su actualización debería ser esta:
update foo
set bar = bar - 1
where baz in
(
select baz from
(
select baz
from foo
where fooID = '1'
) as arbitraryTableName
)