SELECT
    *
FROM
    order_info
WHERE
    date>'2025-10-15' AND status='completed' AND product_name IN ('C++','Java','Python')
ORDER BY
    id ASC;