I\'m making a web site where I would like to increment a counter in a standard MyISAM table.
Simplified example:
UPDATE votes SET num = num + 1;
Yes, the table (or rows in InnoDB format databases) is automatically locked when you execute an update query.