![]() |
![]() |
|
|
![]() |
![]() |
ALLBASE/SQL COBOL Application Programming Guide: HP 9000 Computer Systems > Chapter 7 Simple Data Manipulation![]() SQL Commands |
|
The SQL commands used for simple data manipulation are:
Refer to the ALLBASE/SQL Reference Manual for the complete syntax and semantics of these commands. In simple data manipulation, you use the SELECT command to retrieve a single row, i.e., a one-row query result. The syntax of the SELECT command that describes a one-row query result is:
Note that the GROUP BY, HAVING, and ORDER BY clauses are not necessary, since these clauses usually describe multiple-row query results. You may omit the WHERE clause from certain queries when the select list contains only aggregate functions:
A WHERE clause may be used, however, to qualify the rows over which the aggregate function is applied:
If the select list does not contain aggregate functions, a WHERE clause is used to restrict the query result to a single row:
Because the host variables that hold query results for a simple SELECT command are not arrays of records, they can hold only a single row. A runtime error occurs when multiple rows qualify for a simple SELECT command. You can test for an SQLCODE value of -10002 to detect this condition:
When multiple rows qualify but the receiving host variables are not in an array of records and the BULK option is not specified, none of the rows are returned. When a column named in the WHERE clause has a unique index on it, you can omit testing for multiple-row query results if the column was defined NOT NULL. A unique index prevents the key column(s) from having duplicate values. The following index, for example, ensures that only one row will exist for any part number in PURCHDB.PARTS:
If a key column of a unique index can contain a null value, the unique index ensures that no more than one null value can exist for that column. Another method of qualifying the rows you want to select is to use the LIKE specification to search for a particular character string pattern. For example, suppose you want to search for all VendorRemarks that contain a reference to 6%. Since the percent sign (%) happens to be one of the wildcard characters for the LIKE specification, you could use the following SELECT statement specifying the exclamation point (!) as your escape character.
The first and last percent sign character are the wildcard characters. The next to the last percent sign, preceded by an exclamation point, is the percent sign that you want to escape, so that it is actually used in the search pattern for the LIKE clause. The character following an escape character must be either a wildcard character or the escape character itself. Complete syntax is presented in the . It is useful to execute the SELECT command before executing the INSERT, DELETE, or UPDATE commands in the following situations:
In simple data manipulation, you use INSERT command syntax to either insert a single row or copy one or more rows into a table from another table. You use the following syntax of the INSERT command to insert a single row:
You can omit ColumnNames when you provide values for all columns in the target table:
Remember that when you do include column names but do not name all the columns in the target table, ALLBASE/SQL attempts to insert a null value into each unnamed column. If an unnamed column was defined as NOT NULL, the INSERT command fails. To copy one or more rows from one or more tables to another table, use the following syntax of the INSERT command:
Note that the SELECT command embedded in this INSERT command cannot contain an INTO or ORDER BY clause. In addition, any host variables used must be within the WHERE or HAVING clauses. The following example copies historical data for filled orders into table PurchDB.OldOrders, then deletes rows for these orders from PurchDB.Orders, keeping that table minimal in size.
In simple data manipulation, you use UPDATE command syntax to change data in one or more columns:
As in the case of the DELETE command, if you omit the WHERE clause, the value of any column specified is changed in all rows of the table. If the WHERE clause is specified, all rows satisfying the search condition are changed, for example:
In this example, column CONTACTNAME can contain a null value. To insert a null value, the program must assign a number less than 0 to the indicator variable for this column, CONTACTNAMEIND:
In simple data manipulation, you use DELETE command syntax to delete one or more rows from a table:
The WHERE clause specifies a SearchCondition that rows must meet to be deleted, for example:
If the WHERE clause is omitted, all rows in the table are deleted. |
![]() |
||
![]() |
![]() |
![]() |
|||||||||
|