创建个例子
SELECT EMPLOYEES.EMPLOYEE_ID,
EMPLOYEES.LAST_NAME||’’||EMPLOYEES.FIRST_NAME XINGMING,
EMPLOYEES.HIRE_DATE,
EMPLOYEES.JOB_ID,
EMPLOYEES.SALARY,
EMPLOYEES.DEPARTMENT_ID
FROM EMPLOYEES
reports builder学习六
reports builder学习六
主要设置导出格式的设置
reports builder学习六
输出设备的名称,如文件名,打印机名,邮件用户
reports builder学习六
reports builder学习六
接收报告的输出,可以是文件,打印机,邮件
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
输出pdf
reports builder学习六
reports builder学习六reports builder学习六
reports builder学习六
输出rtf
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
输出成html
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
参数变量
SELECT EMPLOYEES.EMPLOYEE_ID,
EMPLOYEES.LAST_NAME||’’||EMPLOYEES.FIRST_NAME XINGMING,
EMPLOYEES.HIRE_DATE,
EMPLOYEES.JOB_ID,
EMPLOYEES.SALARY,
EMPLOYEES.DEPARTMENT_ID
FROM EMPLOYEES
reports builder学习六
where DEPARTMENT_ID=:部门
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
什么都不输入,会没有内容
reports builder学习六
reports builder学习六
不输入也要显示内容
where DEPARTMENT_ID=nvl(:部门,DEPARTMENT_ID)
reports builder学习六
reports builder学习六
显示部门列
SELECT DEPARTMENT_ID FROM EMPLOYEES
order by DEPARTMENT_ID;
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
数据类型选择错误的报错
reports builder学习六
取消重复的部门
SELECT DISTINCT DEPARTMENT_ID FROM EMPLOYEES
order by DEPARTMENT_ID;
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
在增加一个查找条件
where DEPARTMENT_ID=nvl(:部门,DEPARTMENT_ID)and EMPLOYEE_ID=:员工ID
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六
只选部门,会没有内容
reports builder学习六
where DEPARTMENT_ID=nvl(:部门,DEPARTMENT_ID)and EMPLOYEE_ID=nvl(:员工ID,EMPLOYEE_ID)
reports builder学习六
reports builder学习六
增加自定义条件
where DEPARTMENT_ID=nvl(:部门,DEPARTMENT_ID)and EMPLOYEE_ID=nvl(:员工ID,EMPLOYEE_ID)&自定义
reports builder学习六
reports builder学习六
reports builder学习六
手工输入查找条件
reports builder学习六
reports builder学习六
reports builder学习六
在次打开后,就有这行了
reports builder学习六
reports builder学习六
reports builder学习六
reports builder学习六

相关文章:

  • 2022-01-02
  • 2022-12-23
  • 2021-07-29
  • 2021-04-02
  • 2021-07-17
  • 2021-07-14
  • 2022-12-23
猜你喜欢
  • 2021-12-26
  • 2021-09-02
  • 2021-12-05
  • 2021-07-13
  • 2021-12-22
  • 2021-12-19
  • 2021-10-09
相关资源
相似解决方案