我有两张桌子:
表1:用户
| user_Id | likes |
| 100 | 200,201,217 |
| 101 | 200,215,216 |
表2:文章
| article_id| author_id | title |
| 216 | 100 | This is test |
| 200 | 101 | this is only test |
当用户登录成功$userId=user_Id
时,显示该用户喜欢的所有文章?
我不知道如何从用户表中的 likes 列中删除带有逗号的记录?