unique indexes and include statements
问题 create unique index In DB2 UDB I can create an index using the following syntax create unique index I_0004 on TABLENAME (a) INCLUDE (b, c, d); where a, b, c and d are field of the table TABLENAME . In DB2 for os390 this syntax (the INCLUDE keyword) is not allowed, so I am creating the indexes as follows create unique index I_0004 on TABLENAME (a); create index I_0005 on TABLENAME (a, b, c, d); Are the two statements above equivalent to the solution with the INCLUDE keyword? index columns