• 2022-06-06
    以下条件语句与“where 数量 not between 15 and 30”等价的是:
    A: where 数量 >= 15 and 数量 <=30
    B: where 数量 <= 15 and 数量 >=30
    C: where 数量 < 15 or 数量 >30
    D: where 数量 > 15 or 数量 <30