tabelle article:
id = primary key
einleitung = einleitung
text = Artikeltext
tabelle shownin:
id = primary key
articleid = article
where = seite auf der der artikel angezeigt werden soll
code:
SELECT a.* FROM article a
a ist die Spalt ist das richtig? also muesst ich jetzt hier eigentlich
SELECT * FROM article
nehmen
SELECT
a.*
FROM
article a
INNER JOIN
shownin s
ON
a.wo = s.wo
WHERE
s.id = 1
was ich am geruest nicht verstehe ist a und s. was soll das sein? eine spalte oder? lg