$query = "SELECT cc.countryCode, m.stfMode
FROM test t LEFT JOIN countryCode cc ON t.idcountryCode=cc.idcountryCode LEFT JOIN mode m ON t.idmode=m.idmode
WHERE t.idtest=".$idtest;
When i am executing the above query I am getting the below error
Warning: mssql_query(): message: The multi-part identifier ".countryCode" could not be bound.
Please help....