Erreur SQL !
SELECT
t1.titre as titre,
t1.contenu as contenu,
t2.nom as rubrique,
DATE_FORMAT(t1.date_debut,'%d-%m-%y') as date_debut,
DATE_FORMAT(t1.date_fin,'%d-%m-%y') as date_fin,
t1.code as agenda_code,
t2.code as agenda_rubrique_code,
t1.rue as rue,
t1.cp as cp,
t1.ville as ville,
t1.pays as pays
FROM
agenda as t1
INNER JOIN
agenda_categorie as t2
ON
t1.categorie_ref=t2.id
WHERE
date_fin>NOW()
ORDER BY
t1.date_debut
Got error 28 from storage engine