I have two queries that I want to join together, but I don't know how to.
Select father, mother, guardian from students where user_id = '201209291';
I get a result of 3 IDs.
Now, I need to use those three IDs to get their personal information;
Select * from system_users where user_id = (The 3 IDs from the previous query);
How would i go about solving this problem? I thought of the result of the first query into 3 rows, but I don't know how to do that either.