舒服嚓茶

文章
6
资源
1
加入时间
2年10月24天

Oracle——单表查询练习

Oracle SCOTT用户——EMP表,单表查询练习– 01.查询emp表的所有数据select * from emp;– 02.查询emp表中ename,job,sal几列,其中sal列在结果集中以别名salary查询select ename,job,sal as salary from emp;– 03.查询emp表中deptno,ename,年工资,并将年工资命名别名total salaryselect deptno,ename,sal*12 "total salary&quo

map的循环删除操作

1.错误示例Map<String,InterfaceOutParam> outCodes1 = outParamList.stream().collect(Collectors.toMap(InterfaceOutParam::getOutparamCode,a->a));Map<String,InterfaceOutParam> outCodes2 = ...