Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
phpMyAdmin - how to change the value in a field for a group of records?
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- phpMyAdmin - how to change the value in a field fo...
phpMyAdmin - how to change the value in a field for a group of records?
17-01-2009 9:56 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
It's a phpBB database and I want to change the value of the poster_id field, after a search to find the ones I need to change.
The Search shows me this SQL...
SELECT *
FROM `phpbb_posts`
WHERE `post_username` = CONVERT( _utf8 'Freddie'
USING latin1 )
COLLATE latin1_swedish_ci
LIMIT 0 , 30
That brings up the first 30 of Freddie's records.
I want to change the poster_id field from -1 to 18, in all of his records (about 15000 of them). How do I do it?
The Search shows me this SQL...
SELECT *
FROM `phpbb_posts`
WHERE `post_username` = CONVERT( _utf8 'Freddie'
USING latin1 )
COLLATE latin1_swedish_ci
LIMIT 0 , 30
That brings up the first 30 of Freddie's records.
I want to change the poster_id field from -1 to 18, in all of his records (about 15000 of them). How do I do it?
Message 1 of 2
(865 Views)
1 REPLY 1
Re: phpMyAdmin - how to change the value in a field for a group of records?
17-01-2009 1:16 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I've sorted this out now.
I couldn't see how to do it in phpMyAdmin, so I did it from the command line in the end.
I couldn't see how to do it in phpMyAdmin, so I did it from the command line in the end.
Message 2 of 2
(275 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- phpMyAdmin - how to change the value in a field fo...