以前にSQLServerを使用していて、一時変数を作成してSQLで使用する方法を学ぶことができました。
私は次のようなものを書いていました:
declare @Student nvarchar(255)
select @Student = studentname from sometable where somecondition = 1
declare @teacher nvarchar(255)
select @teacher = teachername from sometable2 where somecondition >2
その後
select @student, @teacher, other columns from sometable where some condition
ORACLEデータベースでも同じことをしたい。
助けてください!