0

有没有办法只选择借方值?

示例表:

 ID     Debit     Credit
----    ------    ------
  1     500.00      0.00
  2     500.00      0.00
  3       0.00    100.00

Select ID, Debit From table(这不是我想要的结果集)

 ID     Debit     
----    ------    
 1      500.00
 2      500.00
 3        0.00

我需要的是有一个看起来像这样的结果集。

 ID     Debit     
----    ------    
 1      500.00
 2      500.00

选择 ID,从表中借记 Where (?)

提前致谢。

4

1 回答 1

1
Select ID, Debit from table Where Debit <> 0

我不知道否定是否有意义......如果没有,那么:

Select ID, Debit from table Where Debit > 0

并且因为您可能在此字段中有 NULL:

Select ID, Debit from table Where Debit IS NOT NULL AND Debit <> 0

或者

Select ID, Debit from table Where Debit IS NOT NULL AND Debit > 0
于 2013-10-31T08:19:15.167 回答