Go back to previous topic | Forum name | The Lesson | Following query failed: SELECT m.*,
u.id as u_id,
u.g_id,
u.pa,
u.pb,
u.pc,
u.pk,
u.ua,
u.ub,
u.uc,
u.ug,
u.uj,
u.username as author,
u.num_posts,
u.num_votes,
u.points,
UNIX_TIMESTAMP(m.last_date) as last_date,
UNIX_TIMESTAMP(m.mesg_date) as mesg_date,
UNIX_TIMESTAMP(m.edit_date) as edit_date,
UNIX_TIMESTAMP(u.reg_date) as reg_date
FROM 5_mesg as m LEFT JOIN
dcuser as u
ON m.author_id = u.id
WHERE m.id =
|