MCPcopy
hub / github.com/Masterminds/squirrel / CrossJoin

Method CrossJoin

select.go:318–320  ·  view source on GitHub ↗

CrossJoin adds a CROSS JOIN clause to the query.

(join string, rest ...interface{})

Source from the content-addressed store, hash-verified

316
317// CrossJoin adds a CROSS JOIN clause to the query.
318func (b SelectBuilder) CrossJoin(join string, rest ...interface{}) SelectBuilder {
319 return b.JoinClause("CROSS JOIN "+join, rest...)
320}
321
322// Where adds an expression to the WHERE clause of the query.
323//

Callers 1

TestSelectBuilderToSqlFunction · 0.80

Calls 1

JoinClauseMethod · 0.95

Tested by 1

TestSelectBuilderToSqlFunction · 0.64