SQL91获得积分最多的人(三) select a.user_id, u.name, a.grade_sumfrom(select user_i...
SQL86实习广场投递简历分析(三) select a.job, first_year_mon, first_year_cnt, second_...
SQL81牛客的课程订单分析(五) select a.user_id, min(case when a.`rank`=1 then da...
SQL76考试分数(五) select id, job, score, `t_rank`from(select id, job, score,r...
SQL71牛客每个人最近的登录日期(六) select distinct u.name, pn.date, sum(pn.number) ove...
SQL66牛客每个人最近的登录日期(一) select user_id, max(date) as idfrom logingroup by u...
SQL61 给出employees表中排名为奇数行的first_name select first_namefrom (select emp_n...
SQL57使用含有关键字exists查找未分配具体部门的员工的所有信息。 select e.* from employees e where n...
SQL51查找字符串中逗号出现的次数 select id,length(string) - length(replace(string,',',...