You need to sign in to do that
Don't have an account?
Paula Jarvis 4
SOSL Query Assistance
I need to write a SOSL query to look at the Contact Phone and then look up to a custom Account field called Market (Report_card_segment_c). Would someone please assist?
// use SOSL instead lf SOQL for fuzzier matching
// we are searching for the phone number of the owner of the account
// that has the clid number associated with it.
$search = 'FIND {' . $clid . '} IN PHONE FIELDS '.
'RETURNING ACCOUNT(OWNER.PHONE)';