Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Passing tablename as parameter

Re: Passing tablename as parameter

From: AK <akriket_at_sqli.fr>
Date: Tue, 26 Oct 1999 10:02:17 +0200
Message-ID: <38156009.D161136@sqli.fr>


Hello, here is a sample of DBMS

  l_select := 'SELECT tab1.field1,tab1.field2,tab2.field1 ';
  l_from := 'FROM tab1,tab2';
  l_where := 'WHERE tab1.field1=tab2.fieldx';|
  l_Request := l_select || l_from || l_where;

I hope it helps you. Received on Tue Oct 26 1999 - 03:02:17 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US