# Get a list of employees between ages 30 and 50 who make more than $25/hr my $interesting = $L->query( [ "AGE", "BETWEEN", 30, 50 ], [ "HOURLY", "ABOVE", 25 ], );