Reputation: 10210
i am creating a news mysql database
info i need to store include
when listing news i dont query the large newscontent field but its in the same table
on large scale where millions of articles is it better to store news content on same table as long as i query only the news title without content when listing or create separate table for listing and another displaying full content ?
thanks
Upvotes: 0
Views: 112
Reputation: 545
While both ways would work fine, there are advantages/disadvantages of each:
My proposals:
Upvotes: 1