intermediate filtering MySQL MariaDB SQL Server PostgreSQL SQLite
Match Multiple Columns at Once With Row Value Constructors
Use `(col_a, col_b) IN ((v1, v2), (v3, v4))` to filter on combinations of columns simultaneously — cleaner and less error-prone than chaining `AND`/`OR` conditions.