$id=$_GET["id"];
$query= "
SELECT
blomster_produkter.blomster_produkt_id,
blomster_produkter.blomster_produkt_navn,
blomster_produkter.blomster_produkt_pris
FROM
blomster_produkter
INNER JOIN blomster_produkter ON
blomster_produkter.FK_blomster_produkt_id=blomster_produkter.blomster_produkt_navn
blomster_produkter.FK_blomster_produkt_id=blomster_produkter.blomster_produkt_pris
blomster_produkter.FK_blomster_produkt_id=blomster_produkter.blomster_produkt_id
WHERE FK_blomster_kategori_id=$id";
为什么这会给我一个 mysql 错误 1066?
(如果我遗漏了一些重要的东西,也很抱歉,这是我在stackoverflow上提出的第一个问题)