BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
umar_milanzi
Calcite | Level 5

i have a dataset that looks like

 

customer_id      cellphone

deeee                 0897777

deesss                65788

reeesss              7866

 

(not real values)

 

I want to check which of the customer_id has the same cellphone value

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20

or

proc sql;
select *
from have
group by cellphone
having count(*) > 1
;
quit;
Data never sleeps

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

From the hip:

proc sql;
select
  a.customer_id as cust1,
  b.customer_id as cust2,
  a.cellphone as cell
from have as a, have as b
where a.cellphone = b.cellphone and a.customer_id ne b.customer_id
;
quit;
LinusH
Tourmaline | Level 20

or

proc sql;
select *
from have
group by cellphone
having count(*) > 1
;
quit;
Data never sleeps

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 897 views
  • 0 likes
  • 3 in conversation