What are advantages of using a one-to-one table relationship as opposed to simply storing all the data in one table? I understand and make use of one-to-many, many-to-one, and many-to-many all the time, but implementing a one-to-one relationship seems like a tedious and unnecessary task, especially if you use naming conventions for relating (php) objects to database tables.
I couldn't find anything on the net or on this site that could supply a good real-world example of a one-to-one relationship. At first I thought it might be logical to separate 'users', for example, into two tables, one containing public information like an 'about me' for profile pages and one containing private information such as login/password, etc. But why go through all the trouble of using unnecessary JOINS when you can just choose which fields to select from that table anyway? If I'm displaying the user's profile page, obviously I would only SELECT id,username,email,aboutme etc. and not the fields containing their private info.
Anyone care to enlighten me with some real-world examples of one-to-one relationships?
Edit: Thank you for the good replies so far.
I'd like to add to my question, is a one-to-one good for representing inheritance? In my site, I'm planning to have articles also behave as forum topics, i.e. they will possess more information when viewed on the 'articles' page, but can also be viewed as a forum topic (simply with a text preview linking to the main article) in a specific subforum to facilitate commenting.
So in the forum view, I would only select from the 'topics' table, but in the 'article' view I would select from both?