Hey folks,
How do I combine the two results sets into one:
SELECT userid,firstname,initials,lastname FROM cr_users WHERE userid IN ('1435335','1034861','1425675','1425855')
SELECT userid,addr1,addr2,city,stateprov,country,postalcode,phone FROM cr_useraddr WHERE userid IN ('1435335','1034861','1425675','1425855')
I want to have one result set with all the data above (i.e. each record set would have a name and address associated with it).
Thanks,
- MT
How do I combine the two results sets into one:
SELECT userid,firstname,initials,lastname FROM cr_users WHERE userid IN ('1435335','1034861','1425675','1425855')
SELECT userid,addr1,addr2,city,stateprov,country,postalcode,phone FROM cr_useraddr WHERE userid IN ('1435335','1034861','1425675','1425855')
I want to have one result set with all the data above (i.e. each record set would have a name and address associated with it).
Thanks,
- MT