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: cursor parameter and SQL WHERE clause

Re: cursor parameter and SQL WHERE clause

From: Jonathan Lewis <jonathan_at_jlcomp.demon.co.uk>
Date: Sat, 19 Jun 1999 09:39:53 +0100
Message-ID: <929781822.23814.0.nnrp-04.9e984b29@news.demon.co.uk>


Try:

CURSOR c1(p_in) IS
  SELECT *
    FROM tab1
   WHERE col1 LIKE p_in||'%';

--

Jonathan Lewis
Yet another Oracle-related web site: www.jlcomp.demon.co.uk Received on Sat Jun 19 1999 - 03:39:53 CDT

Original text of this message

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