diff --git src/wp-admin/includes/class-wp-comments-list-table.php src/wp-admin/includes/class-wp-comments-list-table.php
index f87ce81..53363f1 100644
--- src/wp-admin/includes/class-wp-comments-list-table.php
+++ src/wp-admin/includes/class-wp-comments-list-table.php
@@ -77,7 +77,7 @@ class WP_Comments_List_Table extends WP_List_Table {
 		global $post_id, $comment_status, $search, $comment_type;
 
 		$comment_status = isset( $_REQUEST['comment_status'] ) ? $_REQUEST['comment_status'] : 'all';
-		if ( !in_array( $comment_status, array( 'all', 'moderated', 'approved', 'spam', 'trash' ) ) )
+		if ( !in_array( $comment_status, array( 'all', 'mine', 'moderated', 'approved', 'spam', 'trash' ) ) )
 			$comment_status = 'all';
 
 		$comment_type = !empty( $_REQUEST['comment_type'] ) ? $_REQUEST['comment_type'] : '';
@@ -118,6 +118,7 @@ class WP_Comments_List_Table extends WP_List_Table {
 			'moderated' => 'hold',
 			'approved' => 'approve',
 			'all' => '',
+			'mine' => '',
 		);
 
 		$args = array(
@@ -209,6 +210,13 @@ class WP_Comments_List_Table extends WP_List_Table {
 				'comments'
 			), // singular not used
 
+			/* translators: %s: current user comments count */
+			'mine' => _nx_noop(
+				'Mine <span class="count">(%s)</span>',
+				'Mine <span class="count">(%s)</span>',
+				'comments'
+			),
+
 			/* translators: %s: pending comments count */
 			'moderated' => _nx_noop(
 				'Pending <span class="count">(%s)</span>',
@@ -252,6 +260,19 @@ class WP_Comments_List_Table extends WP_List_Table {
 				$current_link_attributes = ' class="current" aria-current="page"';
 			}
 
+			if ( 'mine' === $status ) {
+				$current_user_id = get_current_user_id();
+				$num_comments->$status = get_comments(
+					array(
+						'user_id' => $current_user_id,
+						'count'   => true,
+					)
+				);
+				$link = add_query_arg( 'user_id', $current_user_id, $link );
+			} else {
+				$link = remove_query_arg( 'user_id', $link );
+			}
+
 			if ( !isset( $num_comments->$status ) )
 				$num_comments->$status = 10;
 			$link = add_query_arg( 'comment_status', $status, $link );
