smr/src/sql/select_comments.sql

15 lines
212 B
SQL

/*
Retreive comments on a story
*/
SELECT
authors.name,
comments.isanon,
comments.comment_text
FROM
comments,
authors
WHERE
comments.author = authors.id AND
comments.postid = :id
ORDER BY post_time DESC;