ok I have (for now) three tables all with the same ID, however I want
to be able to change the ID if I need to.  But I don't want to do it
with 3 statements (ie, update table01 set id=2 where id=3;update
table02 set id=2 where id=3;update table03 set id=2 where id=3) what I
would rather have is a mysql statment that looks something like this:
update table01,table02,table03 set id=2 where id=3;

But that doesn't work.  I know for three tables it isn't harsh to do
three statements, however I will soon have closer to 30, and that
would just be obnoxious.

Your comments are very welcome.
[EMAIL PROTECTED]
Student at Greenville College

_________________________________________________________________
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to