A、A. SELECT customer_id, order_id, order_total FROM orders RANGE ON order _ total (100 AND 2000) INCLUSIVE; B、B. SELECT customer_id, order_id, order_total FROM orders HAVING order _ total BETWEEN 100 and 2000; C、C. SELECT customer_id, order_id, order_total FROM orders WHERE order _ total BETWEEN 100 and 2000; D、D. SELECT customer_id, order_id, order_total FROM orders WHERE order_total>= 100 and <= 2000; E、E. SELECT customer_id, order_id, order_total FROM orders WHERE order_total>= 100 and order_total <= 2000;