SyLon Posted January 5, 2008 Share Posted January 5, 2008 Hello every one. How can I get a result based on multiple queries? For example: query 1: select * from users where user_id=3346 query 2: select * from users where reg_date=$time I would like to receive a result similar to the result I would get if I would run this query: select * from users where user_id=3346 AND reg_date=$time Is that possible? Thanks in advance, Leon. Quote Link to comment https://forums.phpfreaks.com/topic/84634-2-queries-at-a-time/ Share on other sites More sharing options...
Ken2k7 Posted January 5, 2008 Share Posted January 5, 2008 Hello every one. How can I get a result based on multiple queries? For example: query 1: select * from users where user_id=3346 query 2: select * from users where reg_date=$time I would like to receive a result similar to the result I would get if I would run this query: select * from users where user_id=3346 AND reg_date=$time Is that possible? Thanks in advance, Leon. <?php mysql_query("select * from users where user_id='3346' AND reg_date='$time'") or die(mysql_error()); ?> That should work. Quote Link to comment https://forums.phpfreaks.com/topic/84634-2-queries-at-a-time/#findComment-431260 Share on other sites More sharing options...
SyLon Posted January 6, 2008 Author Share Posted January 6, 2008 I know it would work. But I need to get a result based on TWO queries at a time. Let's say I have 2 vars: $q1 and $q2. Each contains a query. I want to run them both and get ONE result based on those queries. Theoretically something like this: mysql_query($q1,$q2) or die(mysql_error()); The result I would get will mach the two queries $q1 and $q2. I hope its clear now. Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/84634-2-queries-at-a-time/#findComment-431805 Share on other sites More sharing options...
redbullmarky Posted January 6, 2008 Share Posted January 6, 2008 would UNION be what you're after? Quote Link to comment https://forums.phpfreaks.com/topic/84634-2-queries-at-a-time/#findComment-431811 Share on other sites More sharing options...
SyLon Posted January 7, 2008 Author Share Posted January 7, 2008 Exactly! Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/84634-2-queries-at-a-time/#findComment-432612 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.