<< Click to Display Table of Contents >> Navigation: Apollo SQL > DDL & DML Statements > DDL and DML |
Data Definition Language (DDL) and
Data Manipulation Language (DML)
Apollo SQL supports the following DDL and DML statements:
DML/DDL Statements |
Description |
Alters a table structure. |
|
Creates a new index |
|
Creates a new table |
|
Deletes existing data from a table |
|
Deletes an index |
|
Deletes a table |
|
Appends one result set to another result set |
|
Adds new data to a table |
|
Retrieves existing data from a table |
|
Creates a cross-tab (spreadsheet-style) query |
|
Modifies existing data in a table |
Clause List
Apollo SQL supports the following SQL statement clauses:
Clause |
Description |
Allows giving tables or columns aliases for ease of coding or better clarity for viewing. |
|
Specifies the tables used for the statement. |
|
Specifies the columns used to group rows. |
|
Specifies columns that contain (or do not contain) NULL values. |
|
Combines field values from more than one table into the result set. |
|
Specifies the columns on which to sort the result set. |
|
Specifies filter criteria to limit rows retrieved. |
See Also