SQL Statements

About

SQL Statements are the language of a database.

A SQL file contains one or more SQL statements that are send to the database.

Attributes

Subset

In SQL, statements are classified by subset. The most known are:

When parsing a SQL file in SQL mode, you get this information in the subset column.

Note that all SQL statements can not be categorically categorized. For instance, the Sqlite Pragma can:

Name

The statement name.

Example of values:

  • select
  • with
  • update
  • create

When parsing a SQL file in SQL mode, you get this information in the name column.

Parameters

SQL Statement may be parameterized to receive arguments known as parameters




Related HowTo
How to execute a procedure in MySQL ?

This howto shows you how to create and execute a SQL Procedure in MySQL. This example has been taken from the official...
How to execute a procedure in Postgres?

This howto shows you how to create and execute a SQL Procedure in Postgres. This example has been taken from the official...
How to execute a procedure with an OUT parameter in Postgres?

This howto shows you how to create and execute a SQL Procedure with parameters in Postgres. This example has been taken from the official...
How to return a result set from a stored function in Postgres?

This howto shows you how to return a result set from a SQL function in Postgres. You can therefore create dynamically a SQL Query statement This example has been adapted from the official...
Learning Tabulify - Step 7 - How to execute a SQL Query

For Tabulify, a SQL Query is a runtime resource that when executed returns a data set in tabular format (known as the result set). The selector of a runtime is known as a runtime selector. This selector...

Task Runner