I have a query like this:
SELECT X.Y( 'p1', 'p2', 'p3', 'p4', '100') from dual
I know what dual is but this part X.Y( 'p1', 'p2', 'p3', 'p4', '100')
really makes me wonder. What does this syntaxis mean?
Are X and Y tables or what?
I have a query like this:
SELECT X.Y( 'p1', 'p2', 'p3', 'p4', '100') from dual
I know what dual is but this part X.Y( 'p1', 'p2', 'p3', 'p4', '100')
really makes me wonder. What does this syntaxis mean?
Are X and Y tables or what?
Well, I can see three possibilities:
What does the SQL*Plus command DESCRIBE X
or DESCRIBE X.Y
return?