hello
i am working in mysql i have two table one primary key of one table is going as foreign key in the other table i want to make a outer join here currently i am running this query which is just showing my table records not of the second i want to show records of both table weather the condition full fill or not
as in the master table i have products but their relevents weights are not entered in the other table so they are null currently i am running this query so help me
select plength, pwidth, pheight,sc_products.product_id, product_name from sc_products LEFT JOIN product_dim ON product_dim.product_id= sc_products.product_id
thanks
arif