> Is it possible to find and replace a data in the table using phpMyAdmin ?
> If yes, how to do that ?
>
> I want to change "http://something.com/"; to
"http://www.something.com/target";


Run an UPDATE query?

UPDATE table SET url='http://something.com/' WHERE
url='http://www.something.com/target'

hth
--
Jason Wong
Gremlins Associates
www.gremlins.com.hk
Tel: +852-2573-5033
Fax: +852-2573-5851




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to