Having the tables
PRODUCTS (product_id NUMBER(15) primary key, name VARCHAR2(25), price NUMBER (7, 2), release_date DATE),
ORDERS (order_id NUMBER(10) primary key, product_id NUMBER (15) REFERENCES products(product_id), quantity NUMBER(7,2), order_date DATE).
Select the orders that were made for the products that were released in 2000 (in two ways)
Selecciona una o más de las siguientes respuestas posibles: