Hey, but where should I add this query to see results?lord_alan wrote:I did it a bit differently. I didn't want every click event.
To get link tracked customers for a particular mailing I use this query:
AlanCode: Select all
SELECT customer_1_tbl.firstname, customer_1_tbl.lastname, customer_1_tbl.email, rdir_log_tbl.change_date, rdir_log_tbl.url_id, rdir_url_tbl.full_url FROM rdir_log_tbl LEFT OUTER JOIN customer_1_tbl ON rdir_log_tbl.customer_id = customer_1_tbl.customer_id LEFT OUTER JOIN rdir_url_tbl ON rdir_url_tbl.url_id = rdir_log_tbl.url_id WHERE rdir_log_tbl.mailing_id = 'MAILING_ID' ORDER BY rdir_log_tbl.change_date ASC;
Digging down to users - possible?
Moderator: moderator
-
- Posts: 5
- Joined: Sat Aug 28, 2010 3:20 pm
- Location: Toronto
Re: Digging down to users - possible?
What would be the My SQL query to pull all users in the database that opened mail?
What would the MySql query look like to extract all the users that click links inside the open mail?
I would like to clean my databases of the dead emails that never get opened.
Cyberfab007
What would the MySql query look like to extract all the users that click links inside the open mail?
I would like to clean my databases of the dead emails that never get opened.
Cyberfab007
-
- Site Admin
- Posts: 2628
- Joined: Thu Aug 03, 2006 10:20 am
- Location: Munich, Germany
- Contact:
Re: Digging down to users - possible?
You can find a doc of the OpenEMM database schema here:
http://www.openemm.org/fileadmin/docs/O ... le-Doc.txt
http://www.openemm.org/fileadmin/docs/O ... le-Doc.txt
OpenEMM Maintainer