摘要:
创建表 1、创建学生表,分数表和课程表 create table student( sid int(11) primary key not null, sname char(25) not null, age int(11) not null, sex char(2) not null, depar 阅读全文
摘要:
#include<opencv2\opencv.hpp> #include<iostream> using namespace cv; using namespace std; int areas; //该函数用来验证是否是我们想要的区域,车牌定位原理其实就是在图片上寻找矩形,我们可以用长宽比例以及 阅读全文
摘要:
select * from STUDENT; select * from STU_COURSE; select * from SCLASS; select * from MAJOR; select * from COURSE; 1.查询所有学员姓名,年龄(显示整数,如24.75岁显示为24岁),所学 阅读全文
摘要:
课堂练习 1.用相关子查询实现:查询每个部门工资最低的两个员工编号、姓名、工资。 select empno,enamel,sal from emp a where 2>(select count(1) from emp b where a.deptno=b.deptno and a.sal>b.sa 阅读全文