認證考試內容年年調整,2026 年的 1z0-071 考試也不例外。KaoGuTi 持續追蹤 Oracle Database SQL 的考綱變化,437 道題目隨之更新,購買後還享有 365 天免費更新。
Oracle 1z0-071 考試概覽:
| 認證廠商: | Oracle |
|---|---|
| 考試名稱: | Oracle Database SQL |
| 考試代碼: | 1Z0-071 |
| 考試時間: | 120 分鐘 |
| 考試形式: | 多選題, 單選題, 監考考試, 電腦化考試 |
| 支援語言: | 簡體中文, 西班牙文, 葡萄牙文, 英文, 日文 |
| 相關認證: | Oracle Database Administrator Certified Associate Oracle Database Development certifications |
| 證照有效期限: | 永久有效 (Oracle 認證政策可能有所變更) |
| 考試費用: | USD 245 (因國家/地區而異) |
| 推薦課程: | Oracle Database SQL 培訓 |
| 考試報名: | Oracle 認證註冊 |
| 範例考題: | ![]() |
| 考試方式: | 依地區提供線上監考或測試中心實體考試 |
| 必備條件: | 無強制先修條件;建議具備關聯式資料庫與 SQL 的基本知識。 |
| 官方大綱網址: | https://education.oracle.com/oracle-database-sql/pexam_1Z0-071 |
Oracle 1z0-071 考試大綱主題:
| 章節 | 目標 |
|---|---|
| 主題 1: 關聯式資料庫概念 | - 資料類型與資料庫物件概述 - 資料表、資料列、資料欄及關聯式模型基礎 |
| 主題 2: SQL 函數 | - 轉換與條件函數
|
| 主題 3: SQL 資料檢索 | - 合併 (Joins) 與集合運算
|
| 主題 4: 子查詢與進階 SQL | - 單列與多列子查詢 - 關聯子查詢與巢狀查詢 |
| 主題 5: 資料操作與綱要物件 | - DDL 操作
|
Oracle Database SQL 考試常見問題解答
1z0-071 是由 Oracle 推出的認證考試,正式名稱為「Oracle Database SQL」,通過後即可取得 Oracle Database SQL Certified Associate 認證。此認證屬於 Associate 等級,主要用來驗證考生在相關技術領域的專業能力,對求職與升遷都有實質幫助。與本考試相關的認證還包括 Oracle Database Administrator Certified Associate、Oracle Database Development certifications,可依個人職涯規劃逐步進修。若你正準備報考 1z0-071,KaoGuTi 的練習題能幫助你更快掌握考試重點。
無強制先修條件;建議具備關聯式資料庫與 SQL 的基本知識。 報考條件可能隨官方政策調整,建議報名前再到 Oracle 官方考試頁面 確認最新規定,以免錯過任何變更。
有的,Oracle 官方為 1z0-071 考試推薦了以下培訓資源:
官方培訓能建立完整的知識架構,若再搭配 KaoGuTi 的 437 道 1z0-071 練習題反覆演練,就能把課程所學確實轉化為考場上的答題能力。
可以。KaoGuTi 提供 1z0-071 免費範例試題(Free PDF Demo),內容取自正式題庫,下載後即可實際檢視題目與答案解析的品質,滿意再購買。購買正式版後享有 365 天免費更新,題庫內容會隨考綱調整同步修訂;365 天到期後如需繼續更新,還可享有 50% 的續更折扣。
KaoGuTi 提供退款保證:購買後 60 天內參加 1z0-071 對應考試而未通過,可申請全額退款。申請時需提交報名證明(准考證/enrollment slip)複印件與官方成績單(Score Report)PDF,並於考後 2 天內提出,我們會在 7 天內處理完成。請注意,購買後 3 天內即參加考試、已下載但未實際應考、免費資料與過期訂單均不適用退款保證,且考生姓名須與付款人姓名一致。若不想退款,也可以選擇免費更換為兩個等值考試資料,並保留原購產品的更新服務。
交付方面,付款完成後系統會在一分鐘內將產品下載連結寄至你的電子郵件信箱,可立即下載開始準備;若 2 小時內未收到,請聯絡客服協助處理。產品不限制安裝的電腦數量,桌機、筆電都能自由使用。
1z0-071 考試大綱共分為 5 個主要領域,包括:
- SQL 資料檢索(佔比未公布)
- SQL 函數(佔比未公布)
- 資料操作與綱要物件(佔比未公布)
完整的大綱內容與各領域細項,請參考本頁上方的考試大綱區塊,建議逐條對照自己的熟悉程度,安排複習的優先順序。
最新的 Oracle PL/SQL Developer Certified Associate 1z0-071 免費考試真題:
問題 #1
Examine the description of the CUSTOMERStable:
Which two SELECTstatements will return these results (Choose two.):
A. SELECT customer_name FROM customers WHERE UPPER (customer_name) LIKE `MA*';
B. SELECT customer_name FROM customers WHERE customer_name LIKE `%a%';
C. SELECT customer_name FROM customers WHERE UPPER (customer_name) LIKE `MA%';
D. SELECT customer_name FROM customers WHERE customer_name LIKE `Ma*';
E. SELECT customer_name FROM customers WHERE customer_name LIKE `Ma%';
F. SELECT customer_name FROM customers WHERE customer_name LIKE `*Ma*';
G. SELECT customer_name FROM customers WHERE customer_name = `*Ma*';
問題 #2
View the Exhibit and examine the data in ORDERS_MASTER and MONTHLYjDRDERS tables.
Evaluate the following MERGE statement:
MERGE INTO orders_master o
USING monthly_orders m
ON (o.order_id = m.order_id)
WHEN MATCHED THEN
UPDATE SET o.order_total = m.order_total
DELETE WHERE (m.order_total IS NULL)
WHEN NOT MATCHED THEN
INSERT VALUES (m.order_id, m.order_total);
What would be the outcome of the above statement?
A. The ORDERS_MASTER table would contain the ORDERJDs 1 and 2.
B. The ORDERS MASTER table would contain the ORDER IDs 1,2,3 and 4.
C. The ORDERS_MASTER table would contain the ORDERJDs 1,2 and 3.
D. The ORDERS_MASTER table would contain the ORDERJDs 1,2 and 4.
問題 #3
Which two are true about transactions in the Oracle Database? (Choose two.)
A. An uncommitted transaction is automatically committed when the user exits SQL*Plus.
B. A DDL statement issued by a session with an uncommitted transaction automatically commits that transaction.
C. DML statements always start new transactions.
D. A session can see uncommitted updates made by the same user in a different session.
E. DDL statements automatically commit only data dictionary updates caused by executing the DDL.
問題 #4
Examine the SQL statement used to create the TRANSACTION table.
SQL > CREATE TABLE transaction
(trn_id char(2) primary key,
Start_date date DEFAULT SYSDATE,
End_date date NOT NULL);
The value 'A1' does not exist for trn_id in this table.
Which SQL statement successfully inserts a row into the table with the default value for START_DATE?
A. INSERT INTO transaction (trn_id, end_date) VALUES ('A1', '10-DEC-2014')
B. INSERT INTO transaction VALUES ('A1', DEFAULT, TO_DATE('SYSDATE+10'))
C. INSERT INTO transaction VALUES ('A1', DEFAULT, TO_DATE(DEFAULT+10))
D. INSERT INTO transaction (trn_id, start_date, end_date) VALUES ('A1', , '10-DEC-2014')
問題 #5
Evaluate the following query:
What would be the outcome of the above query?
A. It executes successfully and introduces an 's at the end of each promo_name in the output.
B. It produces an error because flower braces have been used.
C. It produces an error because the data types are not matching.
D. It executes successfully and displays the literal " {'s start date was \> " for each row in the output.
問題與答案:
| 問題 #1 答案: A,C | 問題 #2 答案: D | 問題 #3 答案: B,D | 問題 #4 答案: A | 問題 #5 答案: A |

1049 位客戶反饋 







110.27.130.* -
我剛購買了你們最新版的1z0-071題庫,KaoGuTi網站從沒有禳我失望過,而且你們的軟件版本很好用,希望我能通過這次考試,祝我好運!