<div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">It depends on which field you'd like to update. For example, you<br>
mention that you want all records with chanid='44' to be changed to<br>
chanid='1042'. That query would be:<br>
<br>
mysql> UPDATE recorded SET chanid='1042' WHERE chanid='44';<br>
<br>
This will change ALL chanid fields to '1042' where the were '44'.<br>
More information on SQL can be found here:<br>
<a href="http://dev.mysql.com/doc/refman/5.1/en/index.html" target="_blank">http://dev.mysql.com/doc/refman/5.1/en/index.html</a><br>
<br>
Enjoy!<br>
<div class="im"><br>
--<br></div></blockquote></div><br>Thanks a ton Joe, I ran into a couple other errors in the DB and fixed 'em up too, learning pretty fast ;) Thanks for the link as well, time to shape up on my MySQL...<br><br>Thanks<br>
Bob<br>