Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other What is this type of database filtering called? Re: What is this type of database filtering called?

#93987
gno
Member

The only thing needed to do such a filtering on a relational database is basic knowledge of SQL.

E.g.

SELECT * FROM products WHERE (price > 100) AND (ram > 2000) AND (manufacturer == 'Intel')

would come up with the results for your example.