I have a long shapefile with various columns. I want to select only some rows, based on an expression. The column used for filtering is "binomial". I tried so far:
"binomial" = "Axis axis"
$binomial = "Axis axis"
$binomial = Axis axis
... and so on, but nothing works. After understanding this, I would like also to add more names, something such as:
$binomial = "Axis axis" and $binomial = "Dama dama"
I am not used to the coding language of QGIS (is that Python? C++?) and I cannot understand how to select those rows.