Page 1 of 1
is it possible to link to rows?
Posted: Wed May 19, 2004 6:29 pm
by snpo123
hey, i have two rows in different tables that I want to link, so if one row is updated so is the other row. I am using phpmyadmin, so is this possible? and if so, how do I do it?
Posted: Thu May 20, 2004 12:46 am
by jason
That's called a Trigger in database terminology. MySQL doesn't support triggers. However, PostgreSQL supports Triggers (and many other things). So you might want to look into that.
With MySQL, you will have to do it in your code.