diff --git modules/comment.views.inc modules/comment.views.inc
index 4a6550e..f57fe19 100644
--- modules/comment.views.inc
+++ modules/comment.views.inc
@@ -436,6 +436,19 @@ function comment_views_data() {
       'handler' => 'views_handler_filter_ncs_last_updated',
     ),
   );
+  
+  $data['node_comment_statistics']['cid'] = array(
+    'title' => t('Last comment CID'),
+    'help' => t('Display the last comment of a node'),
+    'relationship' => array(
+      'title' => t('Last Comment'),
+      'help' => t('The last comment of a node.'),
+      'base' => 'comment',
+      'base field' => 'cid',
+      'handler' => 'views_handler_relationship',
+      'label' => t('Last Comment'),
+    ),
+  );
 
   return $data;
 }
