Bei der Abfrage mittels union entsteht bei mir ein seltsames Problem:
Tabellen: subthema und subsubthema
Folgendes funktioniert:
Folgendes funktioniert nicht:
Also, wenn mehr als 1 Feld abgefragt wird gibts eine Störung - weiss da jemand was dazu ... da wäre ich sehr dankbar.
Tabellen: subthema und subsubthema
Folgendes funktioniert:
PHP-Code:
$abfrage = "(
SELECT Titel FROM subsubthema)
UNION
(SELECT status FROM subthema WHERE status = 'on')
LIMIT 5";
PHP-Code:
$abfrage = "(
SELECT Titel , Status FROM subsubthema)
UNION
(SELECT Id FROM subthema WHERE status = 'on')
LIMIT 5";
Also, wenn mehr als 1 Feld abgefragt wird gibts eine Störung - weiss da jemand was dazu ... da wäre ich sehr dankbar.
Kommentar