Rewrite statements to include the ANSI standard AS keyword when aliasing a table or column. For example, when a column is ...

Rewrite statements to include the ANSI standard AS keyword when aliasing a table or column. For example, when a column is named NEXT and that column is aliased as VALUE, the query SELECT NEXT VALUE FROM Table will cause an error and should be rewritten as SELECT NEXT AS VALUE FROM Table. Similarly, when a table is named NEXT and that table is aliased as VALUE, the query SELECT Col1 FROM NEXT VALUE will cause an error and should be rewritten as SELECT Col1 FROM NEXT AS VALUE.