Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Oracle Exam 1Z0-071 Topic 3 Question 96 Discussion

Actual exam question for Oracle's 1Z0-071 exam
Question #: 96
Topic #: 3
[All 1Z0-071 Questions]

Examine the description or the CUSTOMERS table:

For Customers whose income level has a value, you want to display the first name and due amount as 5% of their credit limit. Customers whose due amount is null should not be displayed.

Which query should be used?

Show Suggested Answer Hide Answer
Suggested Answer: D, E

Contribute your Thoughts:

Vince
1 days ago
Ah, I see. The key is to use IS NOT NULL instead of != NULL. That's a common gotcha in SQL questions. I'm feeling pretty confident about this one.
upvoted 0 times
...
Vicki
12 days ago
Haha, 'cust_credit_level'? I think they meant 'cust_credit_limit'. These exam questions can be a real mind-bender sometimes.
upvoted 0 times
Alishia
4 days ago
A) SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNT FROM customers WHERE cust_income_level IS NOT NULL AND cust_credit_limit IS NOT NULL;
upvoted 0 times
...
...
Antonio
28 days ago
Okay, let's see. We need to display the first name and the due amount as 5% of the credit limit, but only for customers with a non-null income level. I think option C is the way to go.
upvoted 0 times
Keith
17 days ago
I think option C is correct. It checks for non-null values in both income level and credit limit.
upvoted 0 times
...
...
Azalee
1 months ago
I'm not sure, but I think option D could also work because it checks for NULL values using IS NOT NULL.
upvoted 0 times
...
Mitsue
1 months ago
I agree with Thad, option C makes sense because it checks for NULL values using IS NOT NULL.
upvoted 0 times
...
Lilli
1 months ago
Hmm, this is a tricky one. I'm not sure if I should use the NULL or IS NOT NULL syntax. I'll have to think this through carefully.
upvoted 0 times
Rosita
8 days ago
Yes, option C is the right choice for displaying the first name and due amount for customers with income level values.
upvoted 0 times
...
Roselle
9 days ago
So, the correct query would be option C.
upvoted 0 times
...
Christoper
22 days ago
I agree, using IS NOT NULL is the correct syntax for this query.
upvoted 0 times
...
Sherell
23 days ago
I think you should use IS NOT NULL to filter out the null values.
upvoted 0 times
...
...
Thad
1 months ago
I think the correct query is option C.
upvoted 0 times
...

Save Cancel