Question
QofQ?
I imported a csv and created a query object . yay. The query
object is
called 'SendList' using:
<cfhttp url=" http://mywebsite/Mailer/campaign/csv/#campaign.csv#"
name="sendlist" method="get" textqualifier="">
Now I need to 'compare' that query object to another Recordset / database
table to produce a final list (emailList). hmmm.
I planned on using:
<cfquery name="emailList" datasource="**">
SELECT E.email, E.name
FROM SendList E LEFT JOIN optout O
ON E.email = O.email
WHERE O.email Is Null
<cfquery>
to produce a final list, but can't figure out how to 'compare' the 2 items
to produce that list. Would I use query of queries using my 'SendList'?
Any help would be appreciated.
called 'SendList' using:
<cfhttp url=" http://mywebsite/Mailer/campaign/csv/#campaign.csv#"
name="sendlist" method="get" textqualifier="">
Now I need to 'compare' that query object to another Recordset / database
table to produce a final list (emailList). hmmm.
I planned on using:
<cfquery name="emailList" datasource="**">
SELECT E.email, E.name
FROM SendList E LEFT JOIN optout O
ON E.email = O.email
WHERE O.email Is Null
<cfquery>
to produce a final list, but can't figure out how to 'compare' the 2 items
to produce that list. Would I use query of queries using my 'SendList'?
Any help would be appreciated.
