Re: bookmarks and keywords

2007-09-25 Thread Sebastian Mendel
Baron Schwartz schrieb: SELECT parent.bookmark_url as pbu, parent.bookmark_keyword as pbk FROM bookmarks AS child JOIN bookmarks AS parent ON parent.bookmark_keyword = child.bookmark_keyword WHERE child.bookmark_url='http://www.redhat.com'; [..] no, you didn't, you just switched

Re: bookmarks and keywords

2007-09-25 Thread Sebastian Mendel
Baron Schwartz schrieb: You have one final problem, which isn't really causing you trouble with THIS query, but will likely bite you in the future: you are selecting non-grouped columns in a GROUP BY query. SELECT DISTINCT will help too, of course (at least in similar cases) only if required

bookmarks and keywords

2007-09-24 Thread Kevin Waterson
I have a table of bookmarks that have keyword searching. Fields +-+--+--+--+ | bookmark_id | bookmark_title | bookmark_url | bookmark_keyword |

Re: bookmarks and keywords

2007-09-24 Thread Baron Schwartz
Hi Kevin, Kevin Waterson wrote: I have a table of bookmarks that have keyword searching. Fields +-+--+--+--+ | bookmark_id | bookmark_title | bookmark_url | bookmark_keyword |

Re: bookmarks and keywords

2007-09-24 Thread Sebastian Mendel
Kevin Waterson schrieb: I have a table of bookmarks that have keyword searching. Fields +-+--+--+--+ | bookmark_id | bookmark_title | bookmark_url | bookmark_keyword |

Re: bookmarks and keywords

2007-09-24 Thread Baron Schwartz
Hi Sebastian, Kevin, Sebastian Mendel wrote: Kevin Waterson schrieb: I have a table of bookmarks that have keyword searching. Fields +-+--+--+--+ | bookmark_id | bookmark_title | bookmark_url |

Re: bookmarks and keywords

2007-09-24 Thread Sebastian Mendel
Baron Schwartz schrieb: Hi Kevin, Kevin Waterson wrote: I have a table of bookmarks that have keyword searching. Fields +-+--+--+--+ | bookmark_id | bookmark_title | bookmark_url | bookmark_keyword

Re: bookmarks and keywords

2007-09-24 Thread Sebastian Mendel
Baron Schwartz schrieb: SELECT child.bookmark_id, child.bookmark_title, child.bookmark_url FROM bookmarks AS child WHERE child.bookmark_keyword IN ( SELECT parent.bookmark_keyword FROM bookmarks AS parent WHERE parent.bookmark_url =

Re: bookmarks and keywords

2007-09-24 Thread Kevin Waterson
This one time, at band camp, Baron Schwartz [EMAIL PROTECTED] wrote: I wish to select all bookmark_title and bookmark_url that have the same keywords as the bookmark_url 'http://www.redhat.com. I do this.. mysql SELECT child.bookmark_id, child.bookmark_title, child.bookmark_url FROM

Re: bookmarks and keywords

2007-09-24 Thread Baron Schwartz
Kevin Waterson wrote: This one time, at band camp, Baron Schwartz [EMAIL PROTECTED] wrote: I wish to select all bookmark_title and bookmark_url that have the same keywords as the bookmark_url 'http://www.redhat.com. I do this.. mysql SELECT child.bookmark_id, child.bookmark_title,