This document contains 3 SQL queries. The first query uses a join between two tables to return the tutorial ID, author, and count for each tutorial by joining on the author field. The second query uses an inner join to return the book ID, name, and category description by joining the book and category tables on the category ID field. The third query performs the same inner join as the second but uses the USING clause to specify the join column.