How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More SQL PLSQL Interview Questions

How many tables can you join in sql?

0 Answers  


Is it possible to access the current value in a session before accessing next value?

1 Answers  


How to rename a table?

0 Answers  


Hi Guys, I have a situation where I need to access the column values from rowtype variable. However, the column names are dynamic. below is sample code: declare Cursor c1 is select * from emp; Cursor c2 is select column_name from xyztable; v_c2 c2%rowtype; v_str varchar2 v_value varchar2(200); begin for rec in c1 loop open c2;---this cursor has column names like EMPLOYEE_ID, FIRST_NAME, LAST_NAME etc. loop fetch c2 into v_c2; exit when c2%notfound; /* now lets say i want to access value of LAST_NAME from cursor c1, so I am writing below code, however it does not work as expected */ v_str:= 'rec.'|| v_c2.column_name; -- this will give me string like "rec.EMPLOYEE_ID" v_value:=v_str; end loop; end loop; end; / Plz help ASAP.Thanks.

2 Answers  


what are the limitations of identity column? : Transact sql

0 Answers  






can we use out parameter in a function?Give an example.

4 Answers   Logica CMG, TCS,


i have a table like this. cityno cityname mails 1 BANGALORE 8KM 2 HSR LAYOUT 20KM 3 MEJISTIC 30KM 4 JAYADEVA 55KM 5 ITPL 80KM 6 HEBBAL 115KM I HAVE DATA LIKE THIS I WANT O/P LIKE THIS DISTANCE NO.OFCITY 0-50KM 3 51-100KM 2 101-150KM 4 AND SO ON pls give me answer. i want urgent

6 Answers  


What is the difference between left outer join and left join?

0 Answers  


Can you select everything, but 1 or 2 fields, without writer's cramp?

0 Answers  


How do you retrieve the last N records from a table?

10 Answers  


What is dml statement?

0 Answers  


Can we create clustered index without primary key?

0 Answers  


Categories