According to book: FUNDAMENTALS OF Database Systems SEVENTH EDITION by Ramez & Navathe. In Chapter 9 which is related to converting EER to relational diagram there is a topic named: mapping of specialization or generalization to relational model and there are mentioned different rules from which one of the rule 8B is Multiple relations — subclass relations only. In which for a specialization whose sub classes are total(every entity in the super class must belong to (at least) one of the sub classes.
How can we create DDL of this type of relational model. Here we are using Vehicle_id as a primary key in both tables. Why we are not creating VEHICLE table and use its primary key as foreign key in CAR and TRUCK table.