I am required to list down all the tables created by view. I know SYSIBM.SYSTABLES will list down all tables, but which field in SYSIBM.SYSTABLES is used to identify that the table is created using view?
Note: I am using DB2 V10.5.
Edit: Reply to @mustaccio, below is the sample of view table.
CREATE OR REPLACE VIEW MYSCHEMA.MYTABLE (
...
) AS (
...
);