David,
How do I find all the tags that are tagged with the
words "mysql" AND "databases" AND "tutorial"?
If there are no url-keyword dupes in tbl_url_keyword ...
SELECT u.urlid, u.url
FROM tbl_url_keyword AS uk
INNER JOIN tbl_url AS u USING (urlid)
INNER JOIN tbl_keywords AS k USING (keywordi
select a.urlid,a.keywordid,b.url,c.keyword from tbl_url_keyword a inner join
tbl_url b on a.urlid=b.urlid inner join tbl_keyword c on
a.keywordid=c.keywordid where c.keyword="mysql" or c.keyword="databases" or
c.keyword="tutorial";
I think it´ll help you.
"David Otton" <[EMAIL PROTECTED]> es