Background:
An ecommerce web application, but with ‘members’ who order from each other. When a member performs various activities (such as searches), records are inserted into an 'Activity' table. If/when the member submits an order, a record is inserted into an 'Order' table. The goal is to find cases where a member performed an activity but did NOT place an order within some window of time (an hour, say) after the time of the activity.
NOTE: The code that creates order records cannot be changed. If it could be, I could simply 'remember' the activities, and include this information in the order records. Then, to find the cases where a member performed an activity but did not order would be simple: just look for a NULL value (or some other default value) in this column of the order table. Again, alas, this is not possible in my situation...
Tables:
Order(id, ts /* timestamp */, sending_member_id, receiving_member_id, …)Member(id, name, …)Activity_Type(id, name, …)Activity_Log(id, ts, member_id, type_id, extra_info)
Indexes:
All appropriate indexes are in place. Specifically, an index on order.ts does exist.
I’ve tried these three queries:
APPROACH 1
SELECT …
FROM activity_log,
Member
WHERE activity_log.member_id = member.id
AND activity_log.type_id = 1 /* Search */
AND activity_log.ts > [start time]
AND activity_log.ts < [end time]
AND NOT EXISTS (SELECT ‘x’
FROM order
WHERE order.ts >= activity_log.ts
AND order.ts <= activity_log.ts + 3600
AND order.sending_member_id = activity_log.member_id)
ORDER BY activity_log.member_id, activity_log.ts desc
APPROACH 2
SELECT …
FROM activity_log, member
WHERE activity_log.member_id = member.id
AND activity_log.type_id = 1 /* Search */
AND activity_log.ts > [start time]
AND activity_log.ts < [end time]
AND activity_log.member_id NOT IN (SELECT order.sending_member_id
FROM order
WHERE order.ts >= activity_log.ts
AND order.ts <= activity_log.ts + 3600)
ORDER BY activity_log.member_id, activity_log.ts desc
APPROACH 3
SELECT …
FROM activity_log
JOIN member ON activity_log.member_id = member.id
LEFT JOIN order ON order.ts >= activity_log.ts
AND order.ts <= activity_log.ts + 3600
AND activity_log.member_id = order.sending_member_id
WHERE activity_log.type_id = 1 /* Search */
AND activity_log.ts > [start time]
AND activity_log.ts < [end time]
AND order.sending_member_id IS NULL
ORDER BY activity_log.member_id, activity_log.ts desc
Even with approach 3, the query runs for 20-30 seconds and doesn’t use the index on order.ts.