上一页 1 ··· 4 5 6 7 8 9 下一页

级联-city

摘要: <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>城市注册</title> </head> <body> 省份 <select name="sf"> <option value="s1">请选择</option> </select> 阅读全文
posted @ 2019-08-29 19:26 一只小白two 阅读(233) 评论(0) 推荐(0) 编辑

计算器小例子

摘要: <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title></title> <sc 阅读全文
posted @ 2019-08-26 18:17 一只小白two 阅读(265) 评论(0) 推荐(0) 编辑

机器猫css

摘要: <html> <head> <title>机器猫</title> <style> div{ width: 30px; height: 30px; top: 130px; left: 130px; position: absolute; background: red; border-radius: 阅读全文
posted @ 2019-08-19 18:27 一只小白two 阅读(335) 评论(0) 推荐(0) 编辑

数据库练习(学生表)

摘要: 创建表 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 阅读全文
posted @ 2019-08-12 14:23 一只小白two 阅读(11137) 评论(1) 推荐(0) 编辑

车牌识别代码OpenCV

摘要: #include<opencv2\opencv.hpp> #include<iostream> using namespace cv; using namespace std; int areas; //该函数用来验证是否是我们想要的区域,车牌定位原理其实就是在图片上寻找矩形,我们可以用长宽比例以及 阅读全文
posted @ 2019-08-06 21:23 一只小白two 阅读(6706) 评论(0) 推荐(0) 编辑

Java考题知识点

摘要: 挑战10个最难回答的Java面试题(附答案) - 里奥ii的文章 - 知乎 https://zhuanlan.zhihu.com/p/79186037 1.java的基本编程单元是类,基本存储单元是变量; 2.对于.java文件而言,一个文件中可以有多个类,但是只能有一个class和.java的文件 阅读全文
posted @ 2019-08-06 21:07 一只小白two 阅读(549) 评论(0) 推荐(0) 编辑

数据库考点

摘要: 1.数据库:能够长久保存,可储存大量数据,减少冗余的数据集合 2.数据库管理系统:创建,维护,管理和使用数据库的软件 3.数据库系统:数据库,数据库管理系统,数据库管理员,用户,程序员,服务器,应用 数据库管理系统的特点:共享性高,冗余度小;具有高度的物理独立性和逻辑独立性;整体结构化,用数据模型描 阅读全文
posted @ 2019-08-06 18:55 一只小白two 阅读(682) 评论(0) 推荐(0) 编辑

数据库知识点

摘要: 数据库:能够长久保存,可储存大量数据,减少冗余的数据集合 2.数据库管理系统:创建,维护,管理和使用数据库的软件 3.数据库系统:数据库,数据库管理系统,数据库管理员,用户,程序员,服务器,应用 4.逻辑模型:层次,网状,关系(关系就是二维表) 5.sql (1)存储引擎:InnoDB:支持外键,支 阅读全文
posted @ 2019-08-06 18:44 一只小白two 阅读(147) 评论(0) 推荐(0) 编辑

数据库学习7-28

摘要: select * from STUDENT; select * from STU_COURSE; select * from SCLASS; select * from MAJOR; select * from COURSE; 1.查询所有学员姓名,年龄(显示整数,如24.75岁显示为24岁),所学 阅读全文
posted @ 2019-07-28 21:31 一只小白two 阅读(268) 评论(0) 推荐(0) 编辑

数据库学习7-26

摘要: 课堂练习 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 阅读全文
posted @ 2019-07-26 17:41 一只小白two 阅读(284) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页