Aria here is your link
http://www.google.co.uk/search?hl=en&q=sample+code+for+How+to+use+Left+Join+and+ORDER+BY+in+MySQL&meta=
http://www.google.co.uk/search?hl=en&q=How+to+use+Left+Join+and+ORDER+BY+in+MySQL&btnG=Search&meta=
table_references:
table_reference, table_reference
| table_reference [INNER | CROSS] JOIN table_reference [join_condition]
| table_reference STRAIGHT_JOIN table_reference
| table_reference LEFT [OUTER] JOIN table_reference join_condition
| table_reference NATURAL [LEFT [OUTER]] JOIN table_reference
| { OJ table_reference LEFT OUTER JOIN table_reference
ON conditional_expr }
| table_reference RIGHT [OUTER] JOIN table_reference join_condition
| table_reference NATURAL [RIGHT [OUTER]] JOIN table_reference
table_reference:
tbl_name [[AS] alias] [index_hint)]
join_condition:
ON conditional_expr
| USING (column_list)
index_hint:
USE {INDEX|KEY} (index_list)]
| IGNORE {INDEX|KEY} (index_list)]
| FORCE {INDEX|KEY} (index_list)]
index_list:
index_name [, index_name] ...