When you execute a mysqladmin status command, you see something like this:
Uptime: 426 Running threads: 1 Questions: 11082 Reloads: 1 Open tables: 12
        The Open tables value of 12 can be somewhat
        puzzling if you have only six tables.
      
        MySQL is multi-threaded, so there may be many clients issuing
        queries for a given table simultaneously. To minimize the
        problem with multiple client threads having different states on
        the same table, the table is opened independently by each
        concurrent thread. This uses additional memory but normally
        increases performance. With MyISAM tables,
        one extra file descriptor is required for the data file for each
        client that has the table open. (By contrast, the index file
        descriptor is shared between all threads.)
      
You can read more about this topic in the next section, Sección 7.4.8, “Cómo abre y cierra tablas MySQL”.
Ésta es una traducción del manual de referencia de MySQL, que puede encontrarse en dev.mysql.com. El manual de referencia original de MySQL está escrito en inglés, y esta traducción no necesariamente está tan actualizada como la versión original. Para cualquier sugerencia sobre la traducción y para señalar errores de cualquier tipo, no dude en dirigirse a mysql-es@vespito.com.

