SQL syntax term for 'WHERE (col1, col2) < (val1, val2)'
问题 As my question states, I would like to know what we call types of queries with that type of condition in the WHERE clause, i.e.: SELECT * FROM mytable WHERE (col1, col2) < (1, 2); In other words: Give me all records where col1 is less than '1' or if it equals '1' then col2 must be less than '2' - and none of the values are NULL. I really like this type of syntax, but don't know what the naming convention is on how to refer to this type of condition. It looks like a tuple conditional but that