Help for this page
UPDATE table SET foo = bar WHERE baz = boo
UPDATE table SET foo = 'bar' WHERE baz = 'boo'
my $sth = $dbh->prepare( qq|UPDATE $table SET $field = ? WHERE id = ?| ); $sth->execute( $value, $record );