代码改变世界

Java 使用jaxp添加节点

2016-12-12 11:24 by 甘雨路, 366 阅读, 0 推荐, 收藏, 编辑
摘要:jobs 56 Alis 32 package jaxp; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.... 阅读全文

Java jaxp查询节点

2016-12-12 09:17 by 甘雨路, 266 阅读, 0 推荐, 收藏, 编辑
摘要:jobs 56 Alis 32 package jaxp; import java.io.IOException; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilder... 阅读全文

PLSQL 申明和游标

2016-12-09 17:20 by 甘雨路, 435 阅读, 0 推荐, 收藏, 编辑
摘要:--从键盘输入一个数 accept b prompt '请输入一个大于零的数字'; declare anum number := &b; begin while anum>0 loop dbms_output.put_line(anum); anum:=anum-1; end loop; end; declare v_num numb... 阅读全文

html 二级联动(省市联动)

2016-12-09 12:45 by 甘雨路, 12054 阅读, 0 推荐, 收藏, 编辑
摘要:二级联动 阅读全文

html 把左框的选中项添加到右框

2016-12-09 10:01 by 甘雨路, 2961 阅读, 0 推荐, 收藏, 编辑
摘要:选择项 ... 阅读全文

html 全选或全不选小案例

2016-12-08 20:25 by 甘雨路, 640 阅读, 1 推荐, 收藏, 编辑
摘要:lf 你爱好的运动是? 全选/全不选 足球 篮球 羽毛球 乒乓球 阅读全文

PLSQL 的简单命令之五

2016-12-02 17:25 by 甘雨路, 740 阅读, 0 推荐, 收藏, 编辑
摘要:--1. 查询和Zlotkey相同部门的员工姓名和雇用日期 select a.last_name,a.hire_date ,b.department_name from employees a,departments b where b.department_name in (select department_name from departments, employees where... 阅读全文

PLSQL 的简单命令之四

2016-12-01 11:32 by 甘雨路, 311 阅读, 0 推荐, 收藏, 编辑
摘要:-- 子查询 -- in 等于表中的任意一个 select * from Stu where id in (select id from scores) -- 和子查询返回结果中的某一个值比较成立即可 select * from scores where id > all (select id from stu ) -- 和子查询返回结果中的所有值比较 select * from sco... 阅读全文

PLSQL 的简单命令之三

2016-11-30 16:21 by 甘雨路, 1290 阅读, 0 推荐, 收藏, 编辑
摘要:-- 查找两个表中ID相等的 select a.id, a.name,b.math from stu a,scores b where a.id = b.id -- 右外连接 select b.id, a.name,b.math from stu a,scores b where a.id(+) = b.id select b.id, a.name,b.math from stu a r... 阅读全文

PLSQL 的简单命令之二

2016-11-29 18:44 by 甘雨路, 866 阅读, 0 推荐, 收藏, 编辑
摘要:--1. 查询工资大于12000的员工姓名和工资 select first_name,last_name,salary from employees where salary > 12000 --2. 查询员工号为176的员工的姓名和部门号 select first_name,last_name,department_id from employees where job_id = '... 阅读全文
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 22 下一页