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

Home -> Community -> Usenet -> c.d.o.server -> Re: Interesting PL/SQL question

Re: Interesting PL/SQL question

From: Xlr82sas <xlr82sas_at_aol.com>
Date: 1997/11/28
Message-ID: <19971128210701.QAA18434@ladder02.news.aol.com>#1/1

Some fourth generation languages, like SAS, have implemented the leave instruction.

   data tablea;   

       atrib
                name length=$32. label="Subscribers name" fomat=$ebcdic32.
    ;

       do year = 1990, 1991, 1998, 1995;     

               input name $;
        
               if name eq ' ' then leave;

               output;

       end;

       put  year= 'Missing subscriber';

     stop;

run;

Like normalization some people take structured programming to seriously.  

Roger J DeAngelis
CompuCraft Inc
XLR82SAS_at_aol.com ( Accelerate to SAS )
http://members.aol.com/xlr82sas/utl.html Received on Fri Nov 28 1997 - 00:00:00 CST

Original text of this message

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