I would like to know what I am doing wrong, I have consulted with inner joins that should show 11 records and only show me 10, the tenth record is skipped, I do not know if I am doing wrong join or I have passed some field, I attach images and my tables, I thank you for your time!
This is my query
SELECT * FROM branch A
INNER JOIN asset B ON (A.Id = B.Branch_Id)
INNER JOIN supplier C ON ( A.Id = B.Branch_Id AND B.Branch_Id = C.Branch_Id)
INNER JOIN supply D ON (C.Id = D.Supplier_Id)
INNER JOIN data E ON (D.Id = E.Supply_Id AND B.Id = E.Asset_Id)
ORDER BY E.Intake
Once again I thank you for your help.