Closed JeBuSBrian closed 5 years ago
Current code:
SELECT posts.title, CONCAT(first_name, ' ', last_name) AS author FROM posts, users WHERE posts.created_user_id = users.id ;
Correct code:
SELECT posts.title, CONCAT(first_name, ' ', last_name) AS author FROM posts, users WHERE posts.user_id = users.id ;
Removed created_
03-WorkingWithMySQL.md
Current code:
Correct code: