i can use variable in sql server in some simple code.
declare @code varchar(400) set @test = 'A00.000'
select * from A where a.icd = @test
select * from B where b.code = @test
but how to make it in pl/sql developer ?
i can band variable in command window,but not in sql window?
how to use variable in sql window?
declare @code varchar(400) set @test = 'A00.000'
select * from A where a.icd = @test
select * from B where b.code = @test
but how to make it in pl/sql developer ?
i can band variable in command window,but not in sql window?
how to use variable in sql window?