可学答题网 > 问答 > 1Z0-007题库
目录: 标题| 题干| 答案| 搜索| 相关
问题

The ORDERS table has these columns: O


The ORDERS table has these columns: ORDER_ID NUMBER(4) NOT NULL CUSTOMER_ID NUMBER(12) NOT NULL ORDER_TOTAL NUMBER(10,2) The ORDERS table tracks the Order number, the order total, and the customer to whom the Order belongs. Which two statements retrieve orders with an inclusive total that ranges between 100.00 and 2000.00 dollars? ()

  • A SELECT customer_id, order_id, order_total FROM orders RANGE ON order _ total (100 AND 2000) INCLUSIVE;
  • B SELECT customer_id, order_id, order_total FROM orders HAVING order _ total BETWEEN 100 and 2000;
  • C SELECT customer_id, order_id, order_total FROM orders WHERE order _ total BETWEEN 100 and 2000;
  • D SELECT customer_id, order_id, order_total FROM orders WHERE order_total>= 100 and <= 2000;
  • E SELECT customer_id, order_id, order_total FROM orders WHERE order_total>= 100 and order_total <= 2000
参考答案
参考解析:
分类:1Z0-007题库
相关推荐

1、The EMPLOYEE tables has these columns

The EMPLOYEE tables has these columns:LAST_NAME VARCHAR2(35)SALARY NUMBER(8,2)COMMISSION_PCT NUMBER(5,2)You want to display the name and annual salar...

2、The EMPLOYEE tables has these columns

The EMPLOYEE tables has these columns:You want to display the name and annual salary multiplied by the commission_pct for all employees. For re...

3、The CUSTOMERS table has these columns

The CUSTOMERS table has these columns:CUSTOMER_ID NUMBER(4) NOT NULLCUSTOMER_NAME VARCHAR2(100) NOT NULLSTREET_ADDRESS VARCHAR2(150)CITY_ADDRESS VARCHAR...

4、The ORDERS table has these columns:

The ORDERS table has these columns:The ORDERS table tracks the Order number, the order total, and the customer to whom the Order belongs. Whic...

5、The EMP table has these columns: Man

The EMP table has these columns:Management wants a list of names of employees who have been with the company for more than five years. Which...

6、The EMPLOYEES table has these columns:

The EMPLOYEES table has these columns:LAST_NAME VARCHAR2(35) SALARYNUMBER(8,2) HIRE_DATE DATEManagement wants to add a default value to the SALARY...