Hi @all,
ich habe gerade ein Problem mit einem
SQL-
Query. Ich möchte von mehreren Tabellen die Anzahl der Einträge haben. Ich habe jetzt schon diesen Code
SQL-Code:
SELECT count( p.pic_id ) AS pic_count, count( l.link_id ) AS link_count, count( h.hist_id ) AS hist_count
FROM s2b_history h, s2b_pic p, s2b_links l
aber leider bekomme ich für alle 3 Werte 0 heraus, obwohl in s2b_pic 4 Einträge sind.
Ich hoffe, ihr könt mir helfen.