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 (December 2009, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 28 Dec 2009 23:02:14 -0500
Reply-To:   Stanley Luo <shanminglo@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Stanley Luo <shanminglo@GMAIL.COM>
Subject:   Proc SQL question

Deal all: Could anyone help to refine the code bellow to make it work? Thanks in advance!!

/***************************/ proc sql; create table asset_rel_estate as ( select collateral_nbr, col_case_nbr, estimate_date, boss_approve_date, building_type_code, jcic_type_code, rank() over (partition by collateral_nbr order by col_case_nbr desc) as estate_seq from vp.asset_rel_estate where set_date is not null qualify estate_seq = 1 ); quit; /***************************/


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