Masterminds/squirrel: Difference between revisions

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


<font color=darkkhaki>Intro how to use it: https://medium.com/nerd-for-tech/postgres-libraries-to-try-with-go-8f80191edbff</font>
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>


=Installation=
=Installation=

Revision as of 17:18, 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