摘要:
--将emp表中奖金为空的数据改为0(显示游标更新行) declare v_emp emp%rowtype; --设置一个变量 cursor c_emp is --设置一个显示游标,找出奖金为空的数据进行更新 select * from emp where comm is null for upda 阅读全文
摘要:
select * from emp; --emp全表 select * from dept; --dept全表 --查询10号部门中工资大于20号部门最高工资的员工信息(子查询,聚合函数)select * from emp where deptno=10 and sal>(select max(sa 阅读全文
摘要:
select * from emp; --emp全表select * from dept; --dept全表 --查询emp表中,工资是800,950,1300或者3000的员工信息 select * from emp where sal in(800,950,1300,3000); -- 转换为e 阅读全文
摘要:
题目:输入两个正整数m和n,求其最大公约数和最小公倍数。 public static void 第六题() { int m = input.nextInt(); //键入m和n的值 int n = input.nextInt(); for (int a = m > n ? n : m; a > 0; 阅读全文
摘要:
计算学生五门课程的平均分(如果输入的为负数,则提示用户结束循环) public static void 第十八题() { System.out.print("输入学生姓名:"); String a = input.next(); int sum = 0; //设置总数和为0 boolean aa = 阅读全文