SARGable
SARGable stands for search argumentable and refers to whether a predicate in a SQL statement can be evaluated using an index. A query is considered sargable when the database optimizer can apply an index seek or a range scan to locate matching rows efficiently, rather than scanning every row in a table.
Most common sargable predicates are simple comparisons on indexed columns, such as column = value, column > value,
Non-sargable predicates wrap the indexed column in a function or expression, or perform operations that prevent
Practical guidance to improve sargability includes rewriting queries to avoid applying functions to columns, ensuring literals