keywords

package
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 18, 2021 License: MIT Imports: 0 Imported by: 2

Documentation

Overview

Package keywords defines some handy SQL keywords as const strings for use with the bsq query builder. This package is indendet to be imported unqualified, i.e. as '.', into the using source file.

Index

Constants

View Source
const (
	SELECT      = "SELECT "
	FROM        = " FROM "
	JOIN        = " JOIN "
	ON          = " ON ("
	LEFT_JOIN   = " LEFT JOIN "
	RIGHT_JOIN  = " RIGHT JOIN "
	FULL_JOIN   = " FULL JOIN "
	UPDATE      = "UPDATE "
	SET         = " SET "
	WHERE       = " WHERE "
	AND         = " AND "
	OR          = " OR "
	IS_NOT_NULL = " IS NOT NULL"
	ORDER_BY    = " ORDER BY "
	GROUP_BY    = " GROUP BY "
	DELETE_FROM = "DELETE FROM "
	INSERT_INTO = "INSERT INTO "
	VALUES      = " VALUES "
)

Variables

This section is empty.

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL