1) What is the output of rtrim('hello',a)?
2) Which System table shows the Last modified/compiled time for a view?
3) Can a package include cursors/triggers?
4) Age should only be between 10-20 yrs.What kind of integrity is this? (Referential/Foreign Key)
Answers coming soon !!!
2) Which System table shows the Last modified/compiled time for a view?
3) Can a package include cursors/triggers?
4) Age should only be between 10-20 yrs.What kind of integrity is this? (Referential/Foreign Key)
Answers coming soon !!!
The syntax for the rtrim function is:
ReplyDeletertrim( string1, [ trim_string ] )
string1 is the string to trim the characters from the right-hand side.
trim_string is the string that will be removed from the right-hand side of string1. If this parameter is omitted, the rtrim function will remove all trailing spaces from string1.
So----
Output of rtrim('hello',a) is hello.
Vaibhav B Bute