上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 203 下一页
摘要: 名词解释: CBO Cost-Based Optimization 基于代价的优化器 往下进入正题: 有一张员工表这样设计: create table emp( id int, name nvarchar2(20), deptid int, primary key(id)); 可以这样给它塞入三十万 阅读全文
posted @ 2021-09-03 01:11 逆火狂飙 阅读(272) 评论(0) 推荐(0)
摘要: 有这样一张成绩表 CREATE TABLE stu_score ( id int , stu_id int, course_id int, score int, primary key(id) ) 可以这样给它插入实验值: Insert into stu_score select rownum,db 阅读全文
posted @ 2021-09-01 16:17 逆火狂飙 阅读(1066) 评论(0) 推荐(0)
摘要: 在前文 https://www.cnblogs.com/heyang78/p/12079017.html 中,我主要描述了现象,给出了结论,这次试图对过程进行一点思索。 需求:从配送表里,当订单号和配送者一样时,取时间最靠近现在即时间值最大的一条记录。 配送表表结构: create table pe 阅读全文
posted @ 2021-08-31 18:01 逆火狂飙 阅读(153) 评论(0) 推荐(0)
摘要: 使用工具: STS:Spring Tools Suite 4,如果没有请到spring.io/tools下载。 码云:gitee.com,请自行注册好用户。 就绪后往下。 STS向码云上传工程: 1.gitee中先创建一个仓库,记得其仓库地址; 2.STS中选一个工程,或为便捷起见可创建一个java 阅读全文
posted @ 2021-08-30 08:26 逆火狂飙 阅读(537) 评论(0) 推荐(0)
摘要: 准备工作: 1.准备好本地目录,这次我选择的是21年秋季的作品PicturesShow,内含5个文件和一个子目录,程序在子目录中。 2.在码云上新建一个项目PicturesShow,并记下其网址 https://gitee.com/heyang78/pictures-show.git 3.如果没有g 阅读全文
posted @ 2021-08-29 21:05 逆火狂飙 阅读(146) 评论(0) 推荐(0)
摘要: 准备工作: 1.准备好本地目录,这次我选择的是19年春季的作品PlaneCombat,内含49个文件,包括主程序文件index.html,介绍文件README.MD,还有47张图片。 2.在码云上新建一个项目PlaneCombat,并记下其网址 https://gitee.com/heyang78/ 阅读全文
posted @ 2021-08-29 19:55 逆火狂飙 阅读(67) 评论(0) 推荐(0)
摘要: 用Html5/Cavas绘制英国米字旗玻璃光圆饼。 阅读全文
posted @ 2021-08-27 20:45 逆火狂飙 阅读(418) 评论(0) 推荐(0)
摘要: 有一张emp3表,表结构如下: create table emp3( id int, mngid int, name nvarchar2(20), primary key(id)); 其中mngid是他上级的id号,有了这个谁被谁管一目了然。 然后可以插点值: insert into emp3(id 阅读全文
posted @ 2021-08-26 15:58 逆火狂飙 阅读(295) 评论(0) 推荐(0)
摘要: SqlPlus有时会出现非预期的折行,比如这样: SQL> select id,level,lpad(' ',(level-1)*3)||name as name 2 from emp3 3 start with mngid is NULL 4 connect by mngid=prior id; 阅读全文
posted @ 2021-08-26 15:49 逆火狂飙 阅读(902) 评论(0) 推荐(0)
摘要: Java8里提供了一种三个点的语法,意思是无论传入的同类参数无论是一个还是多个,都让编译器给编到数组里传到函数里,这样做相对于数组参数或是链表参数有省却打包的优势,实际上其内部实现是让编译器干了这活。 简单例程: public class Test9 { private static void te 阅读全文
posted @ 2021-08-26 01:40 逆火狂飙 阅读(5587) 评论(0) 推荐(0)
上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 203 下一页
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东