1z0-071 試験問題 66
Examine the structure of the MEMBERStable:

You want to display details of all members who reside in states starting with the letter A followed by exactly one character.
Which SQL statement must you execute?
SELECT * FROM MEMBERS WHERE state LIKE '%A_';

You want to display details of all members who reside in states starting with the letter A followed by exactly one character.
Which SQL statement must you execute?
SELECT * FROM MEMBERS WHERE state LIKE '%A_';
1z0-071 試験問題 67
複合クエリで INTERSECT 演算子を使用した結果について正しい 2 つのステートメントはどれですか?
(2つお選びください。)
(2つお選びください。)
1z0-071 試験問題 68
次の 2 つのクエリを評価します。
SQL> SELECT cust_last_name、cust_city
お客様から
WHERE cust_credit_limit IN (1000, 2000, 3000);
SQL> SELECT cust_last_name、cust_city
お客様から
WHERE cust_credit_limit = 1000 または cust_credit_limit = 2000 または
cust_credit_limit = 3000
上記 2 つのクエリに関して正しいのはどれですか?
SQL> SELECT cust_last_name、cust_city
お客様から
WHERE cust_credit_limit IN (1000, 2000, 3000);
SQL> SELECT cust_last_name、cust_city
お客様から
WHERE cust_credit_limit = 1000 または cust_credit_limit = 2000 または
cust_credit_limit = 3000
上記 2 つのクエリに関して正しいのはどれですか?
1z0-071 試験問題 69
展示を見て、SALEStable の構造を調べてください。

次のクエリは、55000 個以上販売され、10 個以上の商品が注文されたすべての製品 ID を SALEStable から取得するために作成されます。

この SQL ステートメントに関して正しいのはどれですか?

次のクエリは、55000 個以上販売され、10 個以上の商品が注文されたすべての製品 ID を SALEStable から取得するために作成されます。

この SQL ステートメントに関して正しいのはどれですか?
1z0-071 試験問題 70
Examine the structure of the MEMBERStable.

Which query can be used to display the last names and city names only for members from the states MO and MI?

Which query can be used to display the last names and city names only for members from the states MO and MI?
