Just others that might be interested in this information.
All the Category Featured Image data for images is stored in one record in the wp_options table. The record is option_name = cfi_featured_images.
The option_value field then contains a long string with all the Category Featured Image data. The structure of the string is as follows:
i:wp_terms.term_id;s:4:”wp_posts.ID”;
When there is no image it is: i:wp_terms.term_id;N;
The wp_posts.ID corresponds to the image post entry.