MySql Database Help
- SimonTomlinson
-
SimonTomlinson
- Member since: Jun. 23, 2005
- Offline.
-
- Forum Stats
- Member
- Level 01
- Blank Slate
I want to add data to a single column on mysql which effects online ID numbers 1 to 500. I don't want it to effect any other part of the database. What's the command to do this?
- Pilot-Doofy
-
Pilot-Doofy
- Member since: Sep. 13, 2003
- Offline.
-
- Send Private Message
- Browse All Posts (12,142)
- Block
-
- Forum Stats
- Member
- Level 37
- Musician
UPDATE table SET field = 'value' WHERE id <= 500

