日期:2014-05-18  浏览次数:20485 次

选择两列差值大于某值的行
表 A
列1 列2 id
12 16 1
13 19 2
0 5 3
25 61 4
。。。
。。。
选取表A中列2-列1的差值大于5的行

------解决方案--------------------
SQL code
 
declare @表A table (列1 int,列2 int,id int)
insert into @表A
select 12,16,1 union all
select 13,19,2 union all
select 0,5,3 union all
select 25,61,4 union all
select 20,10,5

select * from @表A where 列2-列1>5
/*
列1      列2      id
----------- ----------- -----------
13      19      2
25      61      4
*/
select * from @表A where abs(列2-列1)>5
/*
列1      列2      id
----------- ----------- -----------
13      19      2
25      61      4
20      10      5
*/