1
0
dwelling-home/pkg/mindflow/database/sqlite/queries/postGetAll.sql

10 lines
250 B
SQL

SELECT
`post`.`post_id`,
`category`.`id` AS `category_id`,
`category`.`name` AS `category`,
`post`.`date`,
`post`.`title`,
`post`.`body`
FROM `post`
LEFT JOIN `category`
ON `post`.`post_id` = `category`.`category_id`;