$list = field_info_field('body');
    dpm($list);

We get

'columns' => 
  array (
    'value' => 
    array (
      'type' => 'text',
      'size' => 'big',
      'not null' => false,
    ),
    'summary' => 
    array (
      'type' => 'text',
      'size' => 'big',
      'not null' => false,
    ),
    'format' => 
    array (
      'type' => 'varchar',
      'length' => 255,
      'not null' => false,
    ),
  ),

So, Can some one tell me where these columns get stored in database table ?

Thanks and Regards.

Comments

Jaypan’s picture

In this case, in {field_data_body}.body_value, {field_data_body}.body_summary, and {field_data_body}.body_format

qqboy’s picture

Thanks a lot. Even I opened the database table, but failed to find it out, after your telling me, I check again, then find it as you said. Thanks.

Great J.