I'm working on a JavaEE project, with DB2 Database and JPA. Can we make Inheritance between tables ? In the IBM DB2 Website, i found nothing on the DB2 documentation to do this via SQL code.
This is what i want to do Exemple :
CREATE TABLE TRANSACTION (
TranNo int);
CREATE TABLE MOBILETRANSACTION (
Number1 varchar(255),
Number2 varchar(255) );
What is the word to add to the MOBILETRANSACTION Table to inherit the TRANSACTION table ?
Thank you !