declare l1 number := null; l2 number :=null; begin if l1=l2 then message('equal'); else if l1<>l2 then message('not equal'); else message('else'); end if; end if; end; What will be the output ?
7 14411declare 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 ?
3 8935Given two tables Student(SID, Name, Course) and Level(SID, level) write the SQL statement to get the name and SID of the student who are taking course = 3 and at freshman level.
9 15926What action do you have to perform before retrieving data from the next result set of a stored procedure ?
2571What cursor type do you use to retrieve multiple recordsets?
Apollo, CTS, IonIdea, Microsoft, Oracle, TCS, Vmoksha, Wipro,
17 70779
What is a variable in sql?
Is ms sql is free?
describe transaction-safe table types in mysql : sql dba
How do I partition a table in sql?
What are the different schemas objects that can be created using pl/sql?
How to change a value of the field ‘salary’ as 7500 for an employee_name ‘john’ in a table employee_details?
What are sql*plus environment variables?
When is the update_statistics command used?
What is sql in java?
Enlist the characteristics of pl/sql?
What is the location of pre_defined_functions.
what is a relationship and what are they? : Sql dba
What are user defined functions?
what is 'mysqlcheck'? : Sql dba
which command using query analyzer will give you the version of sql server and operating system? : Sql dba