摘要:
父类 public class Father { public Father() { System.out.println("父类构造PUBLIC father"); } static { System.out.println("父类静态代码块static father"); } { System. 阅读全文
摘要:
--一个题目涉及到的50个Sql语句 --(下面表的结构以给出,自己在数据库中建立表.并且添加相应的数据,数据要全面些. 其中Student表中,SId为学生的ID) 表结构 学生表tblStudent(编号StuId、姓名StuName、年龄StuAge、性别StuSex)--课程表tblCour 阅读全文
摘要:
单例模式:运行期间有且仅有一个实例 一. 关键点: 1.一个类只有一个实例 最基本的 (只提供私有构造器) 2.该类必须自行创建这个实例 (定义了静态的该类的私有对象) 3.该类必须自行向整个系统提供这个实例 (提供一个静态的公有方法,返回创建或者获取本身的静 态私有对象) 二.基本单例模式 1.懒 阅读全文
摘要:
创建序列 create sequence sq_teacher_tnostart with 10 从哪一个数字开始increment by 1 每次增长的数字maxvalue 999999999999999 允许的最大值cycle/nocycle 是否循环cache/nocache 20 是否缓存 阅读全文
摘要:
--函数 functioncreate or replace function fn_teacher_tid(f_tid char --用户传递的参数)return char --返回值的类型is --声明返回值f_result teacher.tid%type;begin if length(f_ 阅读全文
摘要:
--存储过程:一组完成特定功能的sql语句集--如果用户新增时 身份证号 不够18位 报错create or replace procedure pro_add_teacher(p_tno number,p_tname varchar2,p_tid char,p_sal number)is e_ti 阅读全文
摘要:
--触发器-- :old 代表以前的列值-- :new 更改以后的列值 --这两个变量只能在 for each row存在的时候才能使用--update语句有:old :new--insert只有:new--delete只有:old --创建一个teacher_log (只要有人操作这个teache 阅读全文
摘要:
--查询所有老师的薪水排名--rank():具有相等值的排位相同,随后的排名跳跃select tname,sal,rank() over(order by sal) as 薪水排名from teacher--dense_rank():具有相等值的排位相同,随后的排名是连续的select tname, 阅读全文
摘要:
select * from teacher where tno>1090 --回忆之前的MYSQL分页select * from teacher limit (pageIndex-1)*pageSize,pageSize --oracle的分页 需要伪列? 什么是伪列!--伪列 可以从表中查询的到! 阅读全文
摘要:
select * from teacher--联合查询 --01.union (并集)select tno from teacher where tno>1080 union(select tno from teacher where tno>1090)--02.union all(并集并且显示重复 阅读全文