LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (August 2001, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 23 Aug 2001 09:57:14 -0700
Reply-To:   Steve <guitarzealot@YAHOO.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Steve <guitarzealot@YAHOO.COM>
Organization:   http://groups.google.com/
Subject:   Dates on between not working?
Content-Type:   text/plain; charset=ISO-8859-1

OK, I used this PROC SQL on the mainframe and it worked fine. But when I tried it on on my PC using SAS 6.12 I did not get the rows back. Is there something on the PC SAS that is different with PROC SQL? Any ideas?

Thanks

Steve

PROC SQL; CREATE TABLE QTR3 AS SELECT * FROM DATA3 WHERE INVDATE BETWEEN '01JUL01'D AND '30SEP01'D ;

NOTE: Table WORK.QTR3 created, with 0 rows and 2 columns.

The input is

INFILE 'D:\SASLEARN\CBACK.TXT'; INPUT @1 DMEMO $10. @12 INVDATE YYMMDD10.

;


Back to: Top of message | Previous page | Main SAS-L page