I'm trying to find out what type of membership which is the type_id has with a count of cars that have this membership
Here are my tables
create table car_hire
(car_id char (5) primary key not null,
car_reg varchar (15) not null,
car_make varchar (20) not null,
car_model varchar (20) not null,
car_year date not null,
type_id char (5) not null)
engine=innodb;
create table car_type
(type_id char(4) primary key not null,
type_decription varchar (15) not null,
Hire_cost int (5) not null)
ENGINE=InnoDB;
Please help