Hello,i need a bit help about populating datalist control. Instead to explain my problem i have an image that would better illustrate my problem i believeLINK TO THE IMAGEit is related with INNER JOIN SQL Statement. I have no clue how to retrive the data from the two tables and bind to SqlDataSource which populates the DataList control. Basicaly i know how to fetch some data but from the picture above you will notice that i am far from the solution. This is the SELECT query that i am currently using:SELECT Matches.ClubHome, Matches.ClubGuest, Matches.MatchDate, Prognosis.Match_ID AS Expr1, Prognosis.User_ID, Prognosis.UserName, Prognosis.Coefficient, Prognosis.SpentMoney, Prognosis.Company, Prognosis.GivenTip, Prognosis.PrognoseDate FROM Matches INNER JOIN Prognosis ON Matches.Match_ID = Prognosis.Match_ID WHERE (Matches.Match_ID = Prognosis.Match_ID)
tia 