大佬们求求指导了,我真听劝

真不知道要怎么办了
全部评论
不是哥们有点粗心啊,字打错了
1 回复 分享
发布于 08-14 18:48 湖南
再做个项目
点赞 回复 分享
发布于 08-03 21:58 辽宁
四六级不错
点赞 回复 分享
发布于 08-06 07:02 江苏
我在牛客刷到一个跟你这个项目一模一样的…描述都差不多
点赞 回复 分享
发布于 08-06 12:51 河北
面向对象 写成了 面相对象。
点赞 回复 分享
发布于 08-08 12:50 广东
咱写的一个项目昂
点赞 回复 分享
发布于 08-13 14:40 陕西
专业排名这么高能直接保研了吧
点赞 回复 分享
发布于 08-14 18:19 广东

相关推荐

SQL178 工作日各时段叫车量、等待接单时间和调度时间叫车量:因为每一次打车记录都赋予了时段,故count(period)即为某一时段的叫车量等待时间:结束打车时间-打车时间。因为有可能出现打车过程中取消订单的情况,此时order_id为null,使用if()将其筛掉即可。调度时间:即司机过来接你上车所用的时间。start_time-order_time可以通过case来给period字段分配多个值,是否工作日可以用dayofweek判断:1为周日,2为周一以此类推;time()函数将日期格式化为时分秒的类型,使用加减运算则返回秒数,再除以60就可以转换为分钟;with t1 as(select    case when time(event_time)>='07:00:00' and time(event_time) when time(event_time)>='09:00:00' and time(event_time) when time(event_time)>='17:00:00' and time(event_time)    else '休息时间'    end period    ,if(tb_get_car_record.order_id is null,null,timestampdiff(second,event_time,end_time)) wait_time    ,timestampdiff(second,order_time,start_time) as dispatch_timefrom    tb_get_car_record left join tb_get_car_order    on tb_get_car_record.order_id=tb_get_car_order.order_idwhere dayofweek(event_time) >1    and     dayofweek(event_time) )select     period    ,count(period) as get_car_num    ,round(avg(wait_time)/60,1) as avg_wait_time    ,round(avg(dispatch_time)/60,1) as avg_dispatch_timefrom     t1group by    periodorder by    get_car_num asc
点赞 评论 收藏
分享
1 1 评论
分享
牛客网
牛客企业服务