DISC

Contents | What's New | Quick Links

 

SQL Commands

Introduction

Software Installation

Concepts and Design

Designing Applications

Omnidex Environments

SQL Reference

Omnidex API's

Utilities

Interfaces

Performance Guide

Troubleshooting Guide

Appendix

 

 

DELETE

 

DELETE FROM table [WHERE < predicate-list | CURRENT > [<ON / OF> [CURSOR] cursor]] [WITH options]

Delete rows from a table according to specified criteria.

delete from orders where status='cncl'

 

Syntax

ODXSQL Example

INSERT

UPDATE

SQL Reference

Commands

Functions

 

Syntax

DELETE FROM table [WHERE < predicate-list | CURRENT > [<ON / OF> [CURSOR] cursor]] [WITH options]

DELETE FROM table

Required. table is the name of the table in the database that contains the rows to be deleted.

WHERE predicate-list | CURRENT

Optional. Caution! If omitted, ALL rows will be deleted from the specified table.

predicate-list - Criteria to determine which rows will be deleted.

CURRENT - Delete only the current row.

[ON [CURSOR] cursor]

Optional. The cursor on which to perform the delete. If omitted, the delete will be performed on the current cursor.

[WITH options]

Optional. A comma separated list of options to use when performing the delete.

top

 

OdxSQL Example

 

 

 

top

Dynamic Information Systems Corporation - Omnidex Version 3.8 Build 6 J15.03-Copyright © 2003

DISC | Documentation Home