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 > triggers

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-26-06, 05:00
dawseo dawseo is offline
Registered User
 
Join Date: Apr 2006
Posts: 4
triggers

hello, can someone help me...

i have a table called ' book' with the following columns

book_hire_id
Book_Id
Customer_Id
Start_date
End_date
Book_Hired_Days

I have been trying to create a trigger so that no row within this table can be deleted if the start_date is equal to or less than the current date. I tried this:

CREATE or REPLACE TRIGGER triggerC
BEFORE DELETE on book_hire
for each row
BEGIN
update book_hire
where start_date > sysdate
end;
/

but this jus doesnt allow any deletion of rows from the table. any ideas?
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