Drupal how to load content fields using cck content api avoiding node load
Related content
- Think twice when defining a new content type
- Drupal how to render seperate fieldgroups from a content type (and a display suite trick)
- Drupal how to add another formatter to a cck field using hook_field_formatter_info
- How to obscure email and other text using signwriter and a cck formatter
- Gettting the labels for a cck field
- Drupal module Fancy Multiselect
- Drupal Module Corresponding node reference
- Drupal how to disable a form element in a cck form using form alter


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']