I am dealing with an issue that I have to backtrack as the entire project is already in production and system has been used for a while.
I need to backtrack all the data with the following parametars.
Select * from table where bundle = 5 and count(bundle) >= 3
This will be a joined table so technically I need count of bundles greater than 2 with same transaction.
eg
id | transaction | bundle
-------------------------
1 | 123 | 5
3 | 234 | 15
12 | 1111 | 5
13 | 1111 | 15
17 | 1111 | 5
18 | 1111 | 5
My code so far
select * from table_i as ti
right join table_r as tr
on tr.id = ti.t_id
where ti.type_id = x and ti.bundle = 5 and ti.online = 1 and count(ti.bundle) >=5
Thanks
EDIT REAL CODE:
SELECT ti.*, tr.*
FROM ticket_items AS ti
INNER join transactions as tr
ON tr.id = ti.trans_id
INNER JOIN
(
SELECT tis.trans_id, COUNT(tis.bundle) AS bundle_count
FROM ticket_items as tis
INNER join transactions as trs
ON trs.id = tis.trans_id
WHERE tis.type_id = 2
AND tis.bundle = 5
AND tis.online = 1
HAVING bundle_count > 2
) sub0
ON sub0.trans_id = ti.trans_id
WHERE ti.type_id = 2
AND ti.bundle = 5
AND ti.online = 1
Result:
1328 1 1 766 2 5 25 1 1 2015-10-26 20:26:41 2015-10-27 00:00:02 0 766 1 0 John Doe 123-123-1234 NULL [email protected] NULL NULL NULL NULL 1 164 Cedar Square NULL 123 rrt city province country 125 2015-10-26 20:26:41 2015-10-26 20:26:41 125.00 0.00 0.00 0.00 0 1
Table ticket_items:
id | lot | system | trans_id | type | bundle | price | print | online | date | update | void
1 1 2 1 1 1 100 1 0 2015-10-01 23:30:12 2015-10-03 18:49:25 0
2 1 2 1 2 15 50 1 0 2015-10-01 23:30:12 2015-10-03 16:48:15 0
3 1 3 2 1 1 100 1 0 2015-10-02 00:13:57 2015-10-02 00:22:17 1
4 1 3 2 2 15 50 1 0 2015-10-02 00:13:57 2015-10-02 00:19:17 1
Table transactions:
id | lot_id | cust | first | last| number |||||||
1 | 1 | 23 | john | doe | 123