表: ユーザー
| user_Id | my_threads |
| 100 | 200:1, 201:2, 217:4 |
| 101 | 200:1, 215:3, 217:4 |
表:糸
| thread_id | author_id | title |
| 217 | 100 | This is title thread |
| 200 | 101 | this is only test |
ユーザーが $userId=user_Id に正常にログインすると、そのユーザー スレッドのタイトルを表示しますか?
select title
from thread
where FIND_IN_SET(thread.thread_id,(select my_threads from user where user_id=100));
上記のこのSQLは、my_threadsがこの200、217のようなコロンがない場合に機能します