Jump to content

Recommended Posts

Hi folks,

 

Didn't know which forum this'd go in, sorry if this is the wrong forum for it.

 

I am making a database about a theme park, with 4 tables: customers, reservation, rides and slots. Each ride costs a certain amount of credit, when the customer makes a reservation for a particular ride there 'credit' goes down by how much the ride is worth.

 

I am using an update query to do this (with DoCmd.RunSQL) on the form for reservations.

 

The SQL I'm using is:

 

UPDATE Members INNER JOIN (Rides INNER JOIN Reservation ON Rides.[Ride ID]=Reservation.[Ride ID]) ON Members.CustomerID=Reservation.[Customer ID] SET Members.[Account Balance] = Members.[Account Balance]-Rides.[Point value] WHERE Rides.[Ride ID] = Reservation.[Ride ID];

 

 

This works to an extent, but what I want/need is for it to only update it once at the time of update, for that one ride they book. At the moment it always updates every member for every ride that have booked.. So they keep getting 'charged' for the rides each time someone else books a ride..

 

How would I do this?

 

Hope that makes sense,

Sam

Link to comment
https://forums.phpfreaks.com/topic/84890-access-update-query-problem/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.