Q19 Examine the description of 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?
- (A). SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNT FROM customers WHERE cust_income_level IS NOT NULL AND due_amount IS NOT NULL;
- (B). SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNTFROM customers WHERE cust_income_level != NULL AND cust_credit_level !=NULL;
- (C). SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNTFROM customers WHERE cust_income_level <> NULL AND due_amount <> NULL;
- (D). SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNTFROM customers WHERE cust_income_level != NULL AND due_amount != NULL;
- (E). 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;
Xem thêm:
- Bật tắt Archivelog mode trong Oracle RAC 19c
- Cấu hình mã hoá dữ liệu Transparent Data Encryption (TDE) trong Oracle database 19c
- Top 10 theme miễn phí tốt nhất cho WordPress
- Hệ thống chứng chỉ Oracle Oracle Certification
- Phân biệt CDB$ROOT PDB$SEED APP_ROOT APP_PDB trong Oracle Multitenant