My guess is that you added a new column 'type' to the user table.
This is the reason the above query is failing. To fix it change it to the fully qualified name. Ie:
[sql]....... ON(deletionlog.primaryid = post.postid AND deletionlog.type = 'post')[/sql]
PS You can not add a new user by only adding him to the user-table. Registering a new user involves more tables then only the user table.
|