smr/src/sql/select_download.sql

9 lines
148 B
MySQL
Raw Normal View History

SELECT
raw_text.post_text, posts.post_title
FROM
raw_text, posts
WHERE
raw_text.id = posts.id AND
2021-01-10 22:34:13 +01:00
raw_text.id = :postid AND
posts.unlisted = 0