Folgende SQL Abfrage sollte eigentlich nur einen Wert, nämlich die relid von 28 ausgeben, leider werden alle Inhalte von wov_header_simple ausgegeben.
Kann mir jemand einen Tipp geben, was ich falsch mache?
Kann mir jemand einen Tipp geben, was ich falsch mache?
PHP-Code:
SELECT wov_orders.main_id, wov_header_simple.ueberschrift
FROM wov_header_simple, wov_texte, wov_text___bild___praesentation, wov_orders, wov_format
WHERE
(
wov_header_simple.relid = wov_orders.relid AND
wov_orders.relid = wov_format.id
AND wov_header_simple.relid IN (28)
) OR (
wov_texte.relid = wov_orders.relid
AND wov_orders.relid = wov_format.id
AND wov_texte.relid IN (28)
) OR (
wov_text___bild___praesentation.relid = wov_orders.relid
AND wov_orders.relid = wov_format.id
AND wov_text___bild___praesentation.relid IN (28)
)
ORDER BY
wov_format.format ASC;
mysqli_result Object ( [current_field] => 0 [field_count] => 2 [lengths] => [num_rows] => 96 [type] => 0 )
Kommentar