I know how a where clause works, but in this case, it doesnt seem to work.. might be because im getting confused with all the left joins and renaming and what have you.
So this statement works fine without the where, but when i add the where clause, it says that the column in the where clause is unknown…. Does any one know whats wrong?
select t1.name AS DistroName,t2.name AS OriginName, t3.name AS DesktopName, t3.name AS desktoptest , t2.country, t1.status, t2.description , t5.name as oldtest, t6.name as multitest, t4.name as begintest
from alldistros t1
LEFT join origin t2 on t1.name=t2.name
LEFT join desktop t3 on t2.name=t3.name
LEFT join beginnerdistributions t4 on t3.name=t4.name
LEFT join oldcomputers t5 on t4.name=t5.name
LEFT join multimedia t6 on t5.name=t6.name
WHERE DistroName = 'Absolute LInux'
Thank you
Ruan
Try changing
to