Hi,
I've got a database containing three tables:
=====================
tblEvent:
---------------------------
Id (PK) | Event_Title | Event_Price
=====================
=====================
tblDelegate:
---------------------------
Id (PK) | Delegate_Name
=====================
=====================
tblBookings:
---------------------------
Id (PK) | Event_Id (FK) | Delegate_Id (FK)
=====================
I need to output an HTML table with the following headings:
==============================================
Event Title | Event Price | No. Delegates Booked | Total Price
==============================================
How do I group(/join?) the tables to show this data? I'm confident with doing the recordset stuff, it's just that I have no idea how to build a SELECT string, with data grouped into events where the total number of delegates who've booked on that event will be added together.
Does this make sense?
Any help would be much appreciated, thanks!
I've got a database containing three tables:
=====================
tblEvent:
---------------------------
Id (PK) | Event_Title | Event_Price
=====================
=====================
tblDelegate:
---------------------------
Id (PK) | Delegate_Name
=====================
=====================
tblBookings:
---------------------------
Id (PK) | Event_Id (FK) | Delegate_Id (FK)
=====================
I need to output an HTML table with the following headings:
==============================================
Event Title | Event Price | No. Delegates Booked | Total Price
==============================================
How do I group(/join?) the tables to show this data? I'm confident with doing the recordset stuff, it's just that I have no idea how to build a SELECT string, with data grouped into events where the total number of delegates who've booked on that event will be added together.
Does this make sense?
Any help would be much appreciated, thanks!
Last edited: