If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Problem with Trigger

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-06-08, 12:47
mvreade mvreade is offline
Registered User
 
Join Date: Sep 2006
Posts: 25
Problem with Trigger

Could someone please tell me what wrong with my syntax?

CREATE TRIGGER update_availableQTY_insert AFTER INSERT ON reservRooms FOR EACH ROW BEGIN UPDATE rooms SET rooms.availableQty = NEW.rooms.availableQty - 1 WHERE rooms.room_id = reservRooms.room_id

This one is also giving me an error:

CREATE TRIGGER update_availableQty_delete BEFORE DELETE ON reservRooms FOR EACH ROW BEGIN UPDATE rooms SET rooms.availableQty = OLD.rooms.availableQty + 1 WHERE rooms.room_id = reservRooms.room_id

I'm using version 5.0.45

Thanks,

Michael
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On