----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
Just to help you become more comfortable with Oracle terminology, the solution that LKBrwnDBA provided was a SQL*Plus solution, not a PL/SQL solution.
PL/SQL stands for "Procedural Language (environment for) SQL". Defining and using a variable in PL/SQL might look like this:
Code:
DECLARE
v_mult number := .25;
BEGIN
(additional procedural manipulation code)
END:
/
...whereas the example that LKBrwnDBA provided is in SQL*Plus, Oracle's vendor-specific environment for filling in the gaps left by standard SQL. The only similarity between SQL*Plus and PL/SQL is that they both have a "P" and an "L" in their names.
Cheers,
Mufasa
(aka Dave of Sandy, Utah, USA)
e-mail: dave@dasages.com
@ 16:05 (16Nov04) UTC (aka "GMT" and "Zulu"),
@ 09:05 (16Nov04) Mountain Time
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.