Here is the Order class:
@Entity
public class Order {
@Id
@GeneratedValue
private long id;
private String status;
private int price;
private String name;
// constructor, getters, setters
}Let's say we have a custom @Query annotation that retrieves all the orders with a particular name in which a total price less than a specified value or status is "SUCCESS":
@Query(value = "____", nativeQuery = true)
List<Order> findOrdersByNameWithSuccessOrBelowPrice(int price, String name);Which of the following query string will correctly produce the order list?