This is my first question so I'm going to be very thorough. Bear with me.
I am building a database for beers and have created a linking table that allows me to suggest similar beers (either by taste or some other quality). The original table uses beerID as the primary key and in the linking table I've created a composite primary key from the foreign keys beerID1 and beerID2 by loading in the beerID twice. It's working well so far, except that when I select:
beerID1 = Dechutes IPA, beerID2 = Rogue IPA
-and then in another row-
beerID1 = Rogue IPA, beerID2 = Dechutes IPA
As you can see I have a problem with duplicate data and I'm not too familiar with SQL to get down to the nitty gritty in how to fix this. Any ideas that a layman can use? I'm thinking of some form of validation or query... but can't seem to navigate too far along.