我以前使用过 SQL Server,并且能够学习如何创建临时变量并在 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 数据库中做同样的事情。
请帮忙!