1Z1-051 試験問題を無料オンラインアクセス
| 試験コード: | 1Z1-051 |
| 試験名称: | Oracle Database: SQL Fundamentals I |
| 認定資格: | Oracle |
| 無料問題数: | 254 |
| 更新日: | 2026-05-31 |
Examine the structure and data of the CUSTJTRANS table:
CUSTJRANS Name Null? Type CUSTNO NOT NULL CHAR(2) TRANSDATE DATE TRANSAMT NUMBER(6.2) CUSTNO
TRANSDATE TRANSAMT 11 01-JAN-07 1000 22 01-FEB-07 2000 33 01-MAR-07 3000
Dates are stored in the default date format dd-mon-rr in the CUSTJTRANS table. Which three SQL statements would execute successfully? (Choose three.)
Examine the statement:
Create synonym emp for hr.employees;
What happens when you issue the statement?
View the Exhibit and examine the structure of CUSTOMERS and SALES tables.
Evaluate the following SQL statement:
UPDATE (SELECT prod_id, cust_id, quantity_sold, time_id
FROM sales)
SET time_id = '22-MAR-2007'
WHERE cust_id = (SELECT cust_id
FROM customers
WHERE cust_last_name = 'Roberts' AND
credit_limit = 600);
Which statement is true regarding the execution of the above UPDATE statement?
Which statements are true regarding the FOR UPDATE clause in a SELECT statement? (Choose all that apply.)
View the Exhibit and examine the structure of the PROMOTIONS, SALES, and CUSTOMER tables.
You need to generate a report showing the promo name along with the customer name for all products that were sold during their promo campaign and before 30th October 2007.
You issue the following query:
Which statement is true regarding the above query?