mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-12 12:14:52 +00:00
7 lines
179 B
SQL
7 lines
179 B
SQL
SELECT p.id as "post_id",
|
|
p.title,
|
|
p.body,
|
|
u.id as "author_id",
|
|
u.username as "author_username"
|
|
FROM users u
|
|
JOIN posts p on u.id = p.user_id; |