I would like for a multiple table to be Inner joined but somehow, the FROM is not reading. The columns aren't filled with the datas. But they're generating the columns. Is FROM Statement wrong?
SELECT Customer.CID, Customer.FName, Customer.LName, Customer.Address, Customer.ContactNo,
Book.BID as Book_SerialNo, Book.Title, ShoppingCart.Quantity, Order1.Status, Order1.ODate
FROM Customer Inner Join ShoppingCart on Customer.CID = ShoppingCart.CID,
Order_Book_Junction Inner Join Book on Order_Book_Junction.BID = Book.BID
Inner Join Order1 on Order_Book_Junction.OID = Order1.OID