J
Jay
I have multiple records for the same person, some records have the email
field, others do not. If I'm aggregating up how do I make sure I capture the
email address. If I use SELECT FIRST(EMAIL) GROUP BY NAME and the email
address is the first record then I'm fine (same with LAST). What if the
records look like...
NAME, EMAIL
John Doe,
John Doe, (e-mail address removed)
John Doe,
....where the middle record has the email address, but the first and last
records do not.
Does the FIRST query command capture this? If not, how do I make sure I get
everyone's email address?
Thanks.
field, others do not. If I'm aggregating up how do I make sure I capture the
email address. If I use SELECT FIRST(EMAIL) GROUP BY NAME and the email
address is the first record then I'm fine (same with LAST). What if the
records look like...
NAME, EMAIL
John Doe,
John Doe, (e-mail address removed)
John Doe,
....where the middle record has the email address, but the first and last
records do not.
Does the FIRST query command capture this? If not, how do I make sure I get
everyone's email address?
Thanks.