Hi Everybody,
Hope!! everyone doing well
Could you please help me on the following query
Question:Differnnce between chr(10) 7 chr(13) in oracle. where and how these function are working.
When am executing below queries am getting same output for two queries.
(1)
Begin
dbms_output.put_line('Hi,'||chr(10) ||'good' || chr(13)||chr(10)|| 'morning' ||chr(13)||chr(10) || 'friends');
end;
o/p:
Hi,
good
morning
friends
(2)
begin
dbms_output.put_line('Hi,'||chr(10) ||'good' ||chr(10)|| 'morning' ||chr(10) || 'friends');
end;
Regards,
Annaiah k