gpt4 book ai didi

mysql - 使用计数的问题

转载 作者:行者123 更新时间:2023-11-29 02:37:22 24 4
gpt4 key购买 nike

我正在尝试找出 type_id 具有何种类型的成员(member)资格以及具有此成员(member)资格的汽车数量

这是我的表格

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;

请帮忙

最佳答案

select t.type_id, count(*)
from car_type t left join car_hire h on t.type_id = h.type_id
group by t.type_id

关于mysql - 使用计数的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3154148/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com