I need to join tables but couldn't really understand what is on the websites. Could you help me?
I have the tables
Products
ID / product_name / product_description / product_code /
Users
ID / username / username_id / password /
Checkedout
ID /product_name /product_des /username /username_id /checkedout_date / return_date /
How can I join from Products
(product_name / product_description ) and from Users
(username / username_id) to Checkedout
?
Thanks very much.