Expand description
§A PostgreSQL Query Builder
pqb is a Rust library designed to facilitate the construction of SQL queries for PostgreSQL
databases. It provides a type-safe and ergonomic API to build complex queries programmatically.
§Examples
use pqb::expr::Expr;
use pqb::query::Select;
let _select = Select::new().from("tbl").expr(Expr::column("n")).to_sql();