|
On Tue, 6 Mar 2001 00:01:43 +0700, Nat <nat_blue@YAHOO.COM> wrote:
>If my dataset has a column name "TTRANS" which is in hhmmss format. Could
>you please tell me how can I select only transactions (records) that TTRANS
>between 8.30 AM and 1.30 PM ?
>Should I use proc SQL? And how is the syntax ?
>
>Thanks,
>Nat
...
where "08:30:00"t<ttrans<"13:30:00"t;
in data - step or SQL, doesn't matter...
|