Hallo zusammen,
wenn ich mit einer sql abfrage über mehrere tabellen hantiere dann sieht die z.b. so aus:
Wenn ich nun alle Felder einer Tabelle im Format a.x ansprechen möchte gibt es da eine möglichkeit mir der man alle felder abfragen kann?
also z.b. *.a, *.b oder sowas ähnliches??
Danke im vorraus
wenn ich mit einer sql abfrage über mehrere tabellen hantiere dann sieht die z.b. so aus:
PHP-Code:
SELECT
a.id, a.name,a.vorname,a.str, a.irgendwas,
b.id, b.firma, b.straße, b.irgendwas,
c.id, c.blubb, c.blabb
FROM tabelle1 a, tabelle2 b, tabelle3 c
WHERE
BEDINGUNG
also z.b. *.a, *.b oder sowas ähnliches??
Danke im vorraus
Kommentar