You can use this query:
SELECT mig.*, statement AS table_name,
column_id, column_name, column_usage
FROM sys.dm_db_missing_index_details AS mid
CROSS APPLY sys.dm_db_missing_index_columns (mid.index_handle)
INNER JOIN sys.dm_db_missing_index_groups AS mig ON mig.index_handle = mid.index_handle
where index_group_handle = 72859
ORDER BY mig.index_group_handle, mig.index_handle, column_id;
Where you put in the where statement (e.g.:)
where index_group_handle = 72859
The group handle the first query returns.