Which software is used for pl sql programming?
No Answer is Posted For this Question
Be the First to Post Answer
what happens if null values are involved in expressions? : Sql dba
How can analyze query after generating explain plan ?
What is the purpose of primary key?
Does pl sql work in mysql?
What is procedure function?
What is sql used for?
What is the most important ddl statements in sql are?
Can we perform dml in function?
source destination distance chennai bangalore 500 bangalore chennai 500 hyd delhi 1000 delhi hyd 1000 bangalore hyd 800 Here chennai to bangalore and bangalore to chennai is same distance. and hyd and delhi also same criteria. Based on the distance i want to display only one row using sql query?
Can function return multiple values in sql?
What is dynamic sql in pl sql?
declare lowerl number:= 1; upperl number:= 3; num varchar2(10); begin for i into lowerl..upperl loop num:=num||to_char(lowerl); if i=3 then upperl:=5; end loop; message(num); What will be the output ?