我有两个要合并的查询,但我不知道如何合并。
Select father, mother, guardian from students where user_id = '201209291';
我得到 3 个 ID 的结果。
现在,我需要使用这三个 ID 来获取他们的个人信息;
Select * from system_users where user_id = (The 3 IDs from the previous query);
我将如何解决这个问题?我认为第一个查询的结果为 3 行,但我也不知道该怎么做。