I want to know if there is any difference between the tag cloud table and the lookup table.
As far as I understand, a tagged cloud table could be something like this,
tag_id page_id
1 3
4 6
etc
and a lookup table could be something like this too,
img_id category_id
1 2
1 4
etc
Don’t they look the same and have the same concept!??
But I read this from a book that both columns in the lookup must be set as primary key. Is this necessary?
Then what about the columns in the tagged table, should I set them as primary key?
Thanks.