0
このフィールドに依存するサブセレクトとリターン操作を返す方法がありますか?例えば選択句でサブ選択し、その値で使用する
は、私はこのような何かを行うことができます。
select a, (select top 1 b from b) as b, (a * b) as c
from a
このフィールドに依存するサブセレクトとリターン操作を返す方法がありますか?例えば選択句でサブ選択し、その値で使用する
は、私はこのような何かを行うことができます。
select a, (select top 1 b from b) as b, (a * b) as c
from a
select a, b, (a * b) as c
from (
select a, (select top 1 b from b) as b
from a
) x
from
句にサブクエリを置く:あなたはDBMSを使用してください
select a.a, b.b, (a.a * b.b) as c
from a cross join
(select top 1 b from b) b;
? – Jens