Jump to content

[SOLVED] join wont work


maxelct

Recommended Posts

I have been asked to create some queries on what I am told is a big database (one table has 60 million odd enteries...)

 

ANyway I want to get info from two tables, table1 and table2 (made the names easier)

 

Here's what I have:

 

$query ="SELECT * FROM table1, table2 WHERE table1.appln_id=table2.appln_id LIMIT 1,10";
$result = mysql_query($query);

If ($result){
echo 'success!';
}else{
echo 'failure';
}

and this appears to work since I get success! printed out

 

What I want though is to set another condition so that if only Selects results where appln_id is say <100

 

how would I add that into the query please?

 

thanks in advance

 

Edward

 

Link to comment
https://forums.phpfreaks.com/topic/133181-solved-join-wont-work/
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.