Drupal how to load content fields using cck content api avoiding node load
Related content
- A Drupal Enterprise Quality Experience
- The drupal staging problem
- Automate installing drupal on ubuntu for drupal training purpose
- Drupal7 tip: Alter a field widget
- Drupal 7 tip : Get field values from entity objects like nodes, users, taxonomy, ...
- Drupal 7 tip : Theming : Render only a single field of your entities
- Drupal 7 Using ctools' modal frames and field collection forms to create a better user experience
- Drupal 7 tip: Add contextual links to anything
- Drupal 7 tip : Update and insert only specific fields of your entity
- Doing BIG imports and apache solr indexing using drush, batch api and cron


Good tip. In case you only
Good tip.
In case you only want to retrieve one field, you could still go with your first option. You can get the table and field name dynamically as follows:
$field = content_database_info(content_fields('field_team_name'));
table is in $field['table']
optionally column in $field['columns']