Jump to content

[SOLVED] query...


phorcon3

Recommended Posts

ID                         ArticleID                    User

1                          1                              test

2                          5                              test1

3                          28                             test

4                          28                             test1

 

whats the query to find the articleID where both, test and test1, are included? = 28

 

<?php


$a=mysql_query("SELECT `ArticleID` FROM `table` WHERE `User` = 'test' ORDER BY `ID` DESC");
while($b=mysql_fetch_assoc($a))
{
$article_a=mysql_query("SELECT `ID` FROM `table` WHERE `User` = 'test1' AND `ArticleID` = '$b[ArticleID]'");
$article_b=mysql_fetch_assoc($article_a);

if($article_b['ID'])
{
echo $b['ArticleID'];
}
}

 

but that wouldnt be very efficient since im usin two queries

 

...can anyone help me with this please?

Link to comment
https://forums.phpfreaks.com/topic/120398-solved-query/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.