You can't secure rows in a database. Why would you ever want to?
All you have to do is make sure that the script you write can only update rows that contain information about the currently-loggedin user.
Something like
UPDATE table SET bla=bla WHERE id=$current_user_id;