まず第一に、私はSQLのことにうんざりしています。今、私は次のようなテーブルがあるクラスプロジェクトに取り組んでいます
テーブル ユーザー
user_id | username | name
1 | nihan | Nihan Dip
2 | dip | Meaw ghew
more | more | more
テーブルフレンド
you | friend_id
1 | 2
1 | 27
2 | 9
more | more
テーブルフォロー
user_id | follows
1 | 99
7 | 34
テーブルポスト
post_id | user_id | type | content | post_time
1 | 1 | text | loren toren | timestamp
2 | 2 | text | ipsum | timestamp
今、私はユーザーの友人と彼がフォローしている人から投稿を取得したいので、このSQLを作成しました
SELECT
username, name,content, post_time
FROM
post
INNER JOIN
user ON user.user_id = post.user_id
WHERE
post.user_id IN (SELECT
friend_id
FROM
friend
WHERE
you = 1
UNION ALL
SELECT
follows
FROM
follow
WHERE
user_id = 1)
OR post.user_id = 1
ORDER BY post_time DESC
LIMIT 10
このクエリは問題なく機能します。知りたかったのは、もう最適化を行うことができるかどうかです。ではどうやって?教えて下さい :)