I have a quick question
I have a table with openid’s and two other tables
What connects them all is the userid
But I have to start looking for the userid in de openid table
Can this be done in one select statement or do I need two
I try’d this, but obviously diddn’t work
SELECT op*,g*,gp* FROM openid AS op
INNERJOIN users AS g ON( g.userid = op.userid)
INNERJOIN profiles AS gp ON( gp.userid = op.userid)
WHERE op.openid = 2
thanks, Richard
try