1z1-148 試験問題を無料オンラインアクセス
| 試験コード: | 1z1-148 |
| 試験名称: | Oracle Database: Advanced PL/SQL |
| 認定資格: | Oracle |
| 無料問題数: | 108 |
| 更新日: | 2026-09-15 |
Examine the structure of the EMP table:
Name Null? Type
------------------ -------------- ---------------------
EMPNO NOT NULL NUMBER (4)
ENAME VARCHAR2 (10)
SAL NUMBER (7, 2)
Examine this code:
Which code should be inserted to display the collection contents?
Which data dictionary view includes information about the parameters of procedures and functions that you can call?
Examine this code:
Examine this query:
SELECT ename, d.dname, job, sal, comm FROM emp e, dept d WHERE d.deptno = e.deptno; Which statement is correct regarding the execution of this SQL query?
Consider a function totalEmp () which takes a number as an input parameter and returns the total number of employees who have a salary higher than that parameter.
Examine this PL/SQL package AS
Which two definitions of totalEmp () result in an implicit conversion by Oracle Database on executing this PL/SQL block?