I want to select some rows in users table which their ages are under 35. I wrote the code below but it doesn't work.
$cursor = r\table('users')->filter('age' < 35)->pluck(array('name','family','age'))->run($conn);
unfortunately, after execution the code above shows all the rows even the rows which are more than 35.
I have written the code below and it works truly