Bookings DB vs WP
-
Hi,
Under WordPress I can see all the bookings ==> +- 300 bookings.
But in MySQL table ==W wp_em_bookings I got more than 570 bookings. Why?In the WordPress backend, under bookings you got the option to export as CSV file.
This is wonderful feature.For MySQL, I need to play with 3 tables.
wp_users, wp_em_events, wp_em_bookingsI would like to have the name of the attendees per classes.
wp_users.ID JOIN to wp_em_bookings.person_id to have the event_id JOIN to wp_em_events.events_name
At this time I made (but this is not good enough):
SELECT * FROM wp_em_bookings
LEFT JOIN wp_users
ON ID = person_id
LEFT JOIN wp_em_events
ON event_start_date = booking_dateAnyway, thank you for your nice plugin and support.
Kind regards,George
- The topic ‘Bookings DB vs WP’ is closed to new replies.