I have 2 tables:
User (id, user, pass, ...)
Post (user_id, post, ...)
I would like to create a trigger which delete post of a user, before deleting user... Can you help me?
I have 2 tables:
User (id, user, pass, ...)
Post (user_id, post, ...)
I would like to create a trigger which delete post of a user, before deleting user... Can you help me?
 
    
     
    
    if the tables is  innodb engine 
you can use
ON DELETE CASCADE 
http://dev.mysql.com/doc/refman/5.1/en/innodb-foreign-key-constraints.html
look an example here :