I am trying to indent a scroll-thru menu which has been made into a tree using the
following database query:
select dept_id, LPAD(' ',2*(Level-1))||dept_name dept_name
from depts
start with dept_id = 1
connect by dept_parent = PRIOR dept_id;
My problem is that the query uses spaces to ind
My two cents:
"Beginner" is less a classification of subject matter than of ability to figure out
the answer on one's own. I, for one, had to learn perl, and learn it quickly, on the
job. This put me in a position where I was using DBI and a handful of modules before
I'd had time to finish _L