This document provides an overview of QB (QueryBuilder), a fluent and chainable syntax for building SQL statements in a database-agnostic way. QB aims to abstract SQL statements from database grammar, help stop concatenating SQL strings, and enable new patterns for managing complex SQL. The document demonstrates how to configure QB, use its query builder syntax to construct queries, and perform CRUD operations in a cleaner way compared to manually writing SQL. Key methods covered include from, select, join, where, orderBy, get, insert, update, and delete.