Mailinglisten-Archive |
>> SELECT * >> FROM `bookmarks_links` >> LEFT JOIN `bookmarks_li_m_th` >> ON `bookmarks_links`.`id` = `bookmarks_li_m_th`.`links` >> HAVING ISNULL(`bookmarks_li_m_th`.`themes`) > > so ganz klar ist mir das zwar noch nicht. Aber der Ausdruck > scheint Einträge zu suchen, bei denen bookmarks_li_m_th.themes > NULL ist. ja > Die gibt's aber nicht. jein, in der tabelle nicht, im der select-ausagbe ja > Ich suche Einträge in > bookmarks_links für die überhaupt keine Einträge in > bookmarks_li_m_th existieren... hast du es denn wenigstens probiert? genau das sollte das query machen! t1 id | name ---------- 1 | aaa 2 | bbb t2 id1 | id2 ---------- 1 | 1 1 | 2 SELECT * FROM t1 LEFT JOIN t2 ON t1.id = t2.id1 id | name | id1 | id2 ---------------------- 1 | aaa | 1 | 1 1 | aaa | 1 | 2 2 | bbb | null | null SELECT * FROM t1 LEFT JOIN t2 ON t1.id = t2.id1 HAVING ISNULL(id2) id | name | id1 | id2 ---------------------- 2 | bbb | null | null oder ??? -- Sebastian Mendel www.sebastianmendel.de www.tekkno4u.de www.nofetish.com -- Infos zur Mailingliste, zur Teilnahme und zum An- und Abmelden unter -->> http://www.4t2.com/mysql
php::bar PHP Wiki - Listenarchive