Una cosa del genere ovviamente funziona alla perfezione:
SELECT post_id, post_date, post_title, user_nicename FROM posts, users WHERE users.user_id=posts.user_id ORDER BY post_date DESC LIMIT 0,10;
mi domando invece come mai inserendo nel select UN SOLO ALTRO CAMPO, piu' precisamente post_body (di tipo mediumtext) tutta la query vada a putt... non vada a buon fine:
SELECT post_id, post_date, post_title, post_body, user_nicename FROM posts, users WHERE users.user_id=posts.user_id ORDER BY post_date DESC LIMIT 0,10;
l'errore è questo:
ERROR 1: Can't create/write to file '/root/tmp/#sql_b40_0.MYI' (Errcode: 13)
thx