Hello,
1, 4, 12 and 24 numbers available in database
WHERE column_name>=?
->execute(['2']])
When I query with 1 values, it returns 1, 4, 12 and 24
When I query with 2 values, it returns 4 and 14
When I query with 3 values it only gives 4 results
How do I list those greater than or equal to x numbers?
Thank You