damo87 Posted February 12, 2010 Share Posted February 12, 2010 I have an sql statement that returns a list of user ids from one database. I then need to run some SQL on a different database for each of those user ids. The tricky thing for me here is that they are two different databases, so I assume I can't get all the data I need in one SQL statement. I really have no idea how to start on this, so at this stage even a push in the right direction, ie. a description of generally what I need to do/what to google on, would be helpful. Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/191923-using-result-from-one-sql-statement-in-new-sql-statement/ Share on other sites More sharing options...
jamesxg1 Posted February 12, 2010 Share Posted February 12, 2010 Is this MySQL or SQL ? James. Quote Link to comment https://forums.phpfreaks.com/topic/191923-using-result-from-one-sql-statement-in-new-sql-statement/#findComment-1011567 Share on other sites More sharing options...
damo87 Posted February 12, 2010 Author Share Posted February 12, 2010 Sorry, should have mentioned that it is MySQL. Quote Link to comment https://forums.phpfreaks.com/topic/191923-using-result-from-one-sql-statement-in-new-sql-statement/#findComment-1011569 Share on other sites More sharing options...
damo87 Posted February 13, 2010 Author Share Posted February 13, 2010 OK, I think I've sorted this one out. The output of the first SQL statement results in this array: Array ( [0] => Array ( [uid] => 1234 ) [1] => Array ( [uid] => 4321 ) ) So I need to turn the array values into comma separated values, and remove the last comma (note - because it is a multidimensional array, the implode function will not work): $uid = ''; foreach($resultarray as $v1) { $uid .= $v1["uid"] . "," ; } $uid=substr($uid, 0, -2); Then insert into the next statement: $query = "select * from user where userid IN($uid)"; $result = mysql_query($query) or die("Query failed : " . mysql_error()); Which gives me an array with the data I need. Quote Link to comment https://forums.phpfreaks.com/topic/191923-using-result-from-one-sql-statement-in-new-sql-statement/#findComment-1011652 Share on other sites More sharing options...
trq Posted February 13, 2010 Share Posted February 13, 2010 You could also simply use.... $query = "select * from user where userid IN(" . implode(',', $resultarray) . ")"; Quote Link to comment https://forums.phpfreaks.com/topic/191923-using-result-from-one-sql-statement-in-new-sql-statement/#findComment-1011657 Share on other sites More sharing options...
damo87 Posted February 13, 2010 Author Share Posted February 13, 2010 You could also simply use.... $query = "select * from user where userid IN(" . implode(',', $resultarray) . ")"; Yes, if it wasn't a multi dimensional array. Imploding my array just gives me the word 'array' rather than the user id's I need. Quote Link to comment https://forums.phpfreaks.com/topic/191923-using-result-from-one-sql-statement-in-new-sql-statement/#findComment-1011697 Share on other sites More sharing options...
trq Posted February 13, 2010 Share Posted February 13, 2010 This.... $uid = ''; foreach($resultarray as $v1) { $uid .= $v1["uid"] . "," ; } Is exactly the same as.... implode(',', $resultarray) Quote Link to comment https://forums.phpfreaks.com/topic/191923-using-result-from-one-sql-statement-in-new-sql-statement/#findComment-1011724 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.