SELECT design.user_id, design.bg_color
FROM posts
JOIN design
ON posts.user_id = design.user_id
WHERE posts.id = 18
In other words, we first select from posts where id is 18;
then we join design rows on which the user_id equals the user_id of the posts row.
We retrieve the corresponding user_id and bg_color from the design table.
Note that if there are multiple rows with the same design.user_id, you will get multiple rows back - example:
posts.id | posts.user_id
1 5
3 2
18 9
design.user_id | design.bg_color
2 '#aaffcc'
5 'red'
5 'blue'
9 '#000000'
9 '#cafe00'
query result:
posts.id | posts.user_id | design.user_id | design.bg_color
18 9 9 '#000000'
18 9 9 '#cafe00'