Hi,
In IBM DB2, we can select certain digits from left or right, I am wondering if I can use proc sql to achieve same functionality as:
RIGHT(DIGITS(test.Id_Number), 3)
Thanks,
Eric
Yes,it is a character variable. you can convert it to numeric:
data have;
input v $;
cards;
adf124a
3456pb
7g39b2
;
proc sql;
create table want as select input(substr(compress(v,,'kd'),length(compress(v,,'kd'))-2),3.) as new
from have;
quit;
proc contents data=want;run;
how about:
data have;
input v $;
cards;
adf124a
3456pb
7g39b2
;
proc sql;
select substr(compress(v,,'kd'),length(compress(v,,'kd'))-2)as new
from have;
quit;
Linlin
Thanks Linlin,
If I understand right, the sub string is a char type and could not be used to compared with a numeric type, is that right?
Yes,it is a character variable. you can convert it to numeric:
data have;
input v $;
cards;
adf124a
3456pb
7g39b2
;
proc sql;
create table want as select input(substr(compress(v,,'kd'),length(compress(v,,'kd'))-2),3.) as new
from have;
quit;
proc contents data=want;run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.