Consider using natural keys (as opposed to surrogate "tag ID") to avoid one of the JOINs that would otherwise be necessary when searching on tags (which is likely to be a performance-critical path on a reasonably sized database).
For example:
CREATE TABLE BOOK (
BOOK_ID INT PRIMARY KEY
-- Other fields...
);
CREATE TABLE BOOK_TAG (
TAG_NAME VARCHAR(30),
BOOK_ID INT,
PRIMARY KEY (TAG_NAME, BOOK_ID),
FOREIGN KEY (BOOK_ID) REFERENCES BOOK (BOOK_ID) ON DELETE CASCADE
);
-- For enforcing and cascading the FK and for GROUP BY (in the query below).
CREATE INDEX BOOK_TAG_IE1 ON BOOK_TAG (BOOK_ID, TAG_NAME);
CREATE TABLE TAG (
TAG_NAME VARCHAR(30) PRIMARY KEY,
-- Other fields...
);
You can now get the books that have any of the given tags like this:
SELECT *
FROM BOOK
WHERE BOOK_ID IN (
SELECT BOOK_ID
FROM BOOK_TAG
WHERE
TAG_NAME = 'tag1'
OR TAG_NAME = 'tag2'
-- Etc...
);
And books that have all of the given tags like this:
SELECT *
FROM BOOK
WHERE BOOK_ID IN (
SELECT BOOK_ID
FROM BOOK_TAG
WHERE
TAG_NAME = 'tag1'
OR TAG_NAME = 'tag2'
-- Etc...
GROUP BY BOOK_ID
HAVING COUNT(TAG_NAME) = 2
);
[Working SQL Fiddle Example]
As you can see, there is only one JOIN (written as IN here). There is no need to JOIN with the TAG table at all when searching for books (or just displaying tag names - not shown here).
The only reason to do the second JOIN is if/when you need to get these "other fields" from the TAG table.
Considerations:
- If you don't need to store any additional information per tag (i.e you don't have tag description etc.), you can omit the TAG table altogether.
- If your DBMS supports it, consider clustering BOOK_TAG. You are accessing it only through indexes anyway, so you can remove the "unnecessary" table heap.
- Again, if your DBMS supports it, compress the leading edges of indexes (BOOK_TAG PK and BOOK_TAG_IE1), to save space on repeated values, and more importantly, increase the cache effectiveness.