1z1-061 試験問題を無料オンラインアクセス
試験コード: | 1z1-061 |
試験名称: | Oracle Database 12c: SQL Fundamentals |
認定資格: | Oracle |
無料問題数: | 340 |
更新日: | 2025-09-11 |
View the Exhibit and examine the structure of the PROMOSTIONS table:
Exhibit:
Which two SQL statements are valid? (Choose two.)
Examine the data in the CUSTOMERS table:
You want to list all cities that have more than one customer along with the customer details.
Evaluate the following query:
SQL>SELECT c1.custname, c1.city
FROM Customers c1 __________________ Customers c2
ON (c1.city=c2.city AND c1.custname<>c2.custname);
Which two JOIN options can be used in the blank in the above query to give the correct output? (Choose two.)
View the Exhibit and examine the structure of the CUSTOMERS and GRADES tables:
You need to display names and grades of customers who have the highest credit limit.
Which two SQL statements would accomplish the task? (Choose two.)