搜了一下牛客上都没有瓴羊的面经写一下昨天的面经吧
SQL语句
create table student (
id int unsigned primary key auto increment
);
create table course(
id int unsigned primary key auto increment,
name char(20)not null
);
create table student_course(
sid int unsigned,
cid int unsigned,
score int unsigned not null,
foreign key(sid)references student(id)
foreign key(cid)references course(id),
primary key(sid, cid)
)
1、在student_course表查询平均分不及格的学生,要求列出学生id和平均分
2、查询成绩最高学生的id和总成绩
3、在student course表查询课程1成绩第2高的学生
代码2选1
1、一个字符串中,除了一个字符以外,其余字符都成对出现,找到这个单独出现的字符
2、启动a,b两个线程,由这个两个线程打印出1-100的数字
-a线程打印1、3、5等奇数,b线程打印2、4、6等偶数
-依次串行打印,即打印完1后打印2,然后是3、4、5,全部打印完之后进程能正常结束
面试官真的人很好,虽然一直追问我怎么设计测试用例,但是我不会的也安慰我说没事体验感很好
#面经##测试开发##阿里云#