Ok, I guess thats where the documentation doesnt make it clear enough: What types of joins are used for what purposes. Such as, inner joins vs outter joins?
So in your example, am I to understand that:
t1.col1 refers to my first table I want to compare, the first field I want to use, etc...
and
So, this I understand would be the first part of the code:
$query = 'SELECT `ProjID` , `UserID` , `OrigUserID` , `Proj_Name` , `Proj_Original` , `Proj_Type` , `Proj_Desc` , `Proj_File` , `Proj_Date` FROM `jos_projects`
Now, the 'as t1' .... I dont understand what that is doing.
Let's see...
next code should be attached as:
INNER JOIN jos_users
Once again, there is that 'as t2'. What am I supposed ot be putting in its place? Or, do I place those exact wording in there, or does it stand for something?
ARRGGHHHH!
Ok, the next segment... On(t1.x_id=t2.id)
Ok, are those inside the parenthesis substitutions I need to make, or are the exact syntax?
I am so sorry to be this frustrating to you, I understand it probably all looks pretty basic and simple to you, but I read the manual and it doesnt really seem to get thru to me, s it doesnt explain what the syntax actually stands for - are they substitions I need to make, or are they exact syntax that nees to be placed in there for a reason?