Package 'Query'

Title: Write SQL Statements with ease
Description: This package provides a set of utility functions to efficiently write SQL Statements: In essence converting R to SQL.
Authors: Flippie Coetser [aut, cre]
Maintainer: Flippie Coetser <[email protected]>
License: file LICENSE
Version: 0.0.1.300
Built: 2025-02-17 05:00:11 UTC
Source: https://github.com/FlippieCoetser/Query

Help Index


Data Manipulating Language

Description

DML is a subset or SQL and used to manipulating data in SQL Database

Value

A list of DML Services:

  • INSERT()

  • INTO()

  • SCHEMA(schema)

  • TABLE(table)

  • VALUES()

  • KEYS(keyValues)

  • NEWVALUES(keyValues)

  • UPDATE()

  • SET()

  • KEYVALUES(keyValues)

  • DELETE()


Data Query Language'

Description

DQL is a subset or SQL and used to perform queries against tables in SQL Database

Value

A list of DQL Services:

  • SELECT()

  • FROM()

  • WHERE()


SQL Statement Generator

Description

Generate SQL statement during runtime.

Value

A list of utility functions:


SQL Functions

Description

Generate SQL statement during runtime.

Value

A list of utility functions:


SQL Functions'

Description

SQL contains a set of Utility Functions used to perform primitive operations

Value

A list of SQL Functions:

  • LOWER(value, alias)


SQL Orchestration Service

Description

a collection of services used to construct SQL Queries during runtime

Value

A list of services:

  • SELECT(fields)

  • FROM(table)

  • WHERE(key, value)

  • INSERT(table, keyValues)

  • VALUES(keyValues)

  • UPDATE(table)

  • SET(keyValues)

  • DELETE()


SQL Utility Functions

Description

Generate SQL statement during runtime.

Value

A list of utility functions:


Helper Utilities

Description

Utility services not included in the standard set of SQL functions and used to perform primitive operations

Value

A list of Helper Utilities:

  • BRACKET(value)