The easiest method is to create a "tags" table.
Target_Type -- in case you are tagging multiple tables
Target -- The key to the record being tagged
Tag -- The text of a tag
Querying the data would be something like
Select distinct target from tags
where tag in ([your list of tags to search for here])
and target_type = [the table you're searching]
-- Edit --
Based on your requirement to AND the conditions, the query above would turn into something like this
Select target from
(select target, count(*) cnt
from tags
where tag in ([your list of tags to search for here])
and target_type = [the table you're searching])
where cnt = [number of tags being searched]
