Masterminds/squirrel: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:
=Overview=
=Overview=


Squirrel is a fluent SQL generator for Go. It helps build SQL queries from composable parts representing the SQL SELECT query clauses: <code>[[SQL_SELECT#SELECT|SELECT]]</code>, <code>[[SQL_SELECT#FROM|FROM]]</code>, <code>[[SQL_Querying_Multiple_Tables#Join|JOIN]]</code>, <code>WHERE</code>
Squirrel is a fluent SQL generator for Go. It helps build SQL queries from composable parts representing the SQL SELECT query clauses: <code>[[SQL_SELECT#SELECT|SELECT]]</code>, <code>[[SQL_SELECT#FROM|FROM]]</code>, <code>[[SQL_Querying_Multiple_Tables#Join|JOIN]]</code>, <code>[[SQL_WHERE#Overview|WHERE]]</code>


=Installation=
=Installation=

Revision as of 17:19, 31 May 2024

External

Internal

Overview

Squirrel is a fluent SQL generator for Go. It helps build SQL queries from composable parts representing the SQL SELECT query clauses: SELECT, FROM, JOIN, WHERE

Installation

go get github.com/Masterminds/squirrel

Programming Model