I have user table and payment is many to many relationships table.
SELECT user.uID,
       user.uName,
       user.uLocation,
       user.uBlock,
       user.uRoom,
       user.uStatus,
       payment.pID,
       payment.pDate,
       payment.pType
FROM   user
       INNER JOIN payment
         ON user.uID = payment.pID
LIMIT  0,100  
- With INNER JOINresults will be nothing.
- With LEFT JOINuser display correct result but returnNULLon payment table
- With RIGHT JOINpayment display correct result but returnNULLon user table
How do I get a correct result to display both? LEFT JOIN & RIGHT JOIN
 
     
     
    