DB2 Server for VSE & VM: Interactive SQL Guide and Reference

IGNORE



>>-IGNORE------------------------------------------------------><
 

IGNORE is an ISQL command that nullifies a command, statement, or data that is being typed on multiple input lines. Type it at the start of the input area.

The following example shows how the IGNORE command can be used to correct a table-naming error:

   select projno,actno,acstaff -
   from emp_act -
   ignore
   select projno,actno,acstaff -
   from proj_act -
   where projno = 'MA2100'


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]