smr/src/sql/select_author_of_post.sql

10 lines
112 B
SQL

SELECT
authors.id,
authors.name
FROM
authors,
posts
WHERE
posts.authorid = authors.id AND
posts.id = :id;