Jump to content

2 queries at a time


SyLon

Recommended Posts

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.