WHERE IN 子句中值的顺序是否重要?(如果这很重要,这在 Firebird SQL 上)
比如:
where field1 in (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
提供性能提升超过
where field1 in (3, 5, 10, 2, 1, 8, 6, 9, 4, 7)
WHERE IN 子句中值的顺序是否重要?(如果这很重要,这在 Firebird SQL 上)
比如:
where field1 in (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
提供性能提升超过
where field1 in (3, 5, 10, 2, 1, 8, 6, 9, 4, 7)