Search notes:

SQL statement

An SQL statement is a text-string that conforms to grammar set forth in the SQL standard.
Classes of SQL statements:

See also

The text of an SQL statement can be annotated with comments.
In .NET, an SQL statement is represented by the System.Data.Common.DbCommand class.
In ADO DB, an SQL statement is represented by the ADODB.Command object.
In ADODB, an SQL statement can be executed with the execute() method that is found in the ADODB.Connection object.
v$sql and v$sqlarea
The Python library sqlparse can be used to parse the text of SQL statements.

Index