Correction in select

select and the IDENTITY column In the reference section for the select command, a bulleted item describes how to add a new IDENTITY column and use precision to specify the numeric datatype:

Beginning with Adaptive Server Enterprise version 12.5.4, you can specify the IDENTITY column with int, smallint, and tinyint, as well as precision.

select into existing table The reference section for the select command for Adaptive Server version 15.0 described the following select parameter:

[existing table] [[database.]owner.]table_name

This information is incorrect. Replace it with the following:

existing table table_name

In addition, example 13—which updated the existing authors table to include only books priced over $20—is incorrect, as it implied that the authors table existed, without including the existing keyword.