Hi:
I had to convert a MS Access DB to mySQl. I've done that with all the fields being the same type, name,....
However, I realize the following sql statement does not work in mySQl. Could you help me convert it please?
SELECT Alphabets.Alphabet, Category.Category, Sections.Section FROM Alphabets INNER JOIN (Category INNER JOIN Sections ON Category.Cat_ID = Sections.Cat_ID) ON Alphabets.Alpha_ID = Category.Alpha_ID;
Thanx