MySql Join (Inner): SELECT column_name(s) FROM table1 JOIN table2 ON ON table1.column_name = table2.column_name; MySql LEFT JOIN (OUTER): SELECT column_name(s) FROM table1 LEFT JOIN table2 ON ON ...
I'm trying to glean some info from a mysql database. Id is a product id, type, is a format of the product available (multiple versions of each id), weight is the number of downloads of that product ...