↧
pl/sql: exit an enclosing loop (leaving a labeled loop)
You can leave a loop in pl/sql by specifying a nice litte label to the loop section. For example: <<firstloop>> When labeling, you can exit the loop at any time. In following example, lets...
View ArticleTO_CHAR Oracle Function
With the function TO_CHAR, Oracle converts a number or date to a string. The to_char Oracle syntax is: to_char( value, [ format_mask ], [ nls_language ] ) value can either be a number or date that will...
View Article