我有一张表,我只想保留“属性1”值介于“属性2”和“属性3”之间的行。
我尝试了where子句,但似乎没有过滤任何行
[表格]:
加载*
resident [Table]
where [Attribute 1]>=[Attribute 2] and [Attribute 1]<=[Attribute 3];
有什么想法吗?我怀疑这可以通过IntervalMatch来完成,但是我不确定该如何处理。
非常感谢!
答案 0 :(得分:0)
您的where
子句似乎正确。但是,您正在从[表]中读取正确的行,并将它们添加到[表]上已经存在的行中。而是使用:
[New table name]:
NOCONCATENATE load * resident [Table]
where [Attribute 1]>=[Attribute 2] and [Attribute 1]<=[Attribute 3];