BookmarkSubscribeRSS Feed
DavidPhillips2
Rhodochrosite | Level 12

Please advise on the proc sql version of the below:

cohort is a number like 200110, 200210 for YYYYCustom that represents a year plus an academic semester.

1000 is a way of adding 10 years.

 

inner join odsstu.vcu_degrees_awarded B
B.academic_period_graduation <= put(sum(a.cohort,1000),6.)
10 REPLIES 10
smantha
Lapis Lazuli | Level 10

I guess it works for years. Why change it? How does one increment semester that is when it might be a problem.

DavidPhillips2
Rhodochrosite | Level 12

It works only in a datastep but not proc sql

DavidPhillips2
Rhodochrosite | Level 12

ERROR: Function SUM requires a numeric expression as argument 1.
ERROR: Numeric format F in PUT function requires a numeric argument.

smantha
Lapis Lazuli | Level 10

So Datastep does a conversion and sql does not? Is this a passthru, does data conversion like input or putn notwork?

DavidPhillips2
Rhodochrosite | Level 12

sum is a reserved word in SQL so I can't use it inside of a put statement.  I need the conversion.

DavidPhillips2
Rhodochrosite | Level 12

In this case, I'm writing to the work library.

Reeza
Super User

I usually multiply it by 100 to add the extra zeros.

 

Can you post the exact log? I'd expect that to work, unless it's in a SQL pass through. 

 

(a.cohort*100 + &yrs_to_track)

@DavidPhillips2 wrote:

sum is a reserved word in SQL so I can't use it inside of a put statement.  I need the conversion.


 

Kurt_Bremser
Super User

@DavidPhillips2 wrote:

ERROR: Function SUM requires a numeric expression as argument 1.
ERROR: Numeric format F in PUT function requires a numeric argument.


So you only got away with your sloppy programming because the data step does automatic conversions. In SQL, you have to do the conversion explicitly. The NOTEs about automatic conversions in the data step log should have alerted you to this.

Maxim 2: Read the Log

Maxim 25: Have a Clean Log

Maxim 31: Computers are Dumb. Don't rely on their automatics.

 

Start by applying the INPUT() function as @PGStats suggested.

And then start to clean out such issues from all your codes, whenever you find them.

mklangley
Lapis Lazuli | Level 10

Could you please post your entire query? 

PGStats
Opal | Level 21
inner join odsstu.vcu_degrees_awarded B
B.academic_period_graduation <= put(sum(input(a.cohort, best.), 1000), 6.)
PG

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 10 replies
  • 1112 views
  • 0 likes
  • 6 in conversation