2 Repos
Constructing and executing SELECT statements with optional limit, offset, and WHERE clauses.
Distinct from Database Query Builders: Distinct from Database Query Builders: focuses specifically on SELECT query construction with limit/offset/WHERE, not general query building.
Explore 2 awesome GitHub repositories matching data & databases · Select Query Builders. Refine with filters or upvote what's useful.
CodeIgniter is a PHP web framework built on the Model-View-Controller pattern, designed for building full-stack web applications. It provides a lightweight toolkit with minimal configuration, organizing application logic into controllers, models, and views for clean separation of concerns. The framework includes a fluent query builder for constructing SQL statements programmatically, PSR-4 autoloading with namespace mapping, and a service-based dependency injection container for managing shared class instances. The framework distinguishes itself through its comprehensive set of built-in tools
Constructs and executes SELECT statements with limit, offset, and WHERE clauses to retrieve records.
pg is a PostgreSQL object-relational mapper (ORM) for Go that maps Go structs to database tables and provides a fluent query builder for constructing SQL statements programmatically. At its core, it automatically generates CREATE TABLE statements from Go struct definitions using struct tags and naming conventions, and builds queries through method chaining with placeholder-based parameter binding to prevent SQL injection. The library distinguishes itself through relation-aware join generation that automatically constructs JOIN clauses for has-one, has-many, many-to-many, and polymorphic assoc
Constructs SELECT statements with columns, joins, conditions, grouping, ordering, limits, and offsets using a fluent API.