ABAP Keyword Documentation → ABAP - Reference → Obsolete Language Elements → Obsolete Processing of External Data → Obsolete Database Access → Obsolete Short Forms in Open SQL
SELECT - Short Form
Other versions: 7.31 | 7.40 | 7.54
Obsolete Syntax
SELECT result FROM { dbtab | *dbtab } ... .
Effect
This statements is a short form of the following Open SQL statements for accessing a single database table dbtab
:
SELECT result FROM dbtab INTO { dbtab | *dbtab } ...
The explicit specification of a work area does not apply in the short form. A
table work area
dbtab
*dbtab
TABLES
*dbtab
dbtab
dbtab
additional table work area
Note
The short form is not allowed in classes. An explicit work area should be used instead.