DBMS_OUTPUT.NEW_LINE and DBMS_OUTPUT.NEW_LINE() difference?
- by Vineet
What is the difference between these two statements?
dbms_output.new_line('') // this is with arguments
dbms_output.new_line; // with no parameters,no round brackets
If there is function overloading,even for that close and open brackets are required after function name.