I have a pretty basic question that confuses me for some strange reason.
I have two tables, one is the table Pages and the other is the Menus. I am wondering, what is the benefits of using another table for mapping? Below is the two implementations that I am thinking:

The only difference I see is the way that I search. For example in the first implementation:
a) if I want all the pages of a specific menu, I'll query all the page_ids of the specific menu name and I'll join them with the id of the table Pages (which is why I think this implementation is more slow).
b) if I want all the menus of a specific page I will search all the menus that have the page_id of the specific page.
In the second implementation is more typical and straightforward (and with more joins).
I think that the second implementation is the right one because it is faster (I guess, because it queries only between ids which is indexes instead of searching in menus names as I mentioned above in a)).
Or is there any other particular reason? Are these two designs identical in a matter of what they can accomplish or are there any other limitations in the first design and I always should choose the second one?