我有下表。
create table T(
    A int, B int, C int, D int, X.... 
    primary key (A, B, C, D))
该表是按顺序排序的,A, B, C, D因为它们是聚集键列。我还有另一张桌子
create table Range(
    A int, B int, C int, D int, Upper bit not --  0: lower, 1: upper
    primary key (A, B, C, D))
该表Range只有两行,给出了下限和上限。例如。
ABCD 上 3 2 9 5 0 9 1 4 1 1
编写查询以获取 之间的所有行A:3 B:2 C:9 D:5 (3295)以及A:9 B:1 C:4 D:1 (9141)按 的自然顺序获取所有行的最简洁方法是A, B, C, D什么?