One news_data record can have 0 to many associated comments_data records, yes?
Comments apply to one and only one news_data record, yes?
This is a simple 1 to Many relationship:
you would add a new column:
news_id to the comments_data table.
news_id is the KEY of a FOREIGN table (news_data)...a Foreign Key in the comments_data table that relates the 2 tables.
SELECT *
FROM
news_data
WHERE news_id=1
SELECT *
FROM
comments_data
WHERE news_id=1
ORDER BY com_id
If comments can apply to more than one news, it's a many to many relationship, handled differently. It doesn't look that way as you describe it, however.