name            count       money
上海中国青年旅行社      -1.00 -240.0000
上海中国青年旅行社       -1.00 -210.0000
上海中国青年旅行社        5.00 475.0000
上海中国青年旅行社        10.00 1400.0000
上海中国青年旅行社        1.00 95.0000就是以上数据。
我想查询count不为负的数据。where count > 0 不行
我的count字段,是多个字段Count出来的值谢谢各位了

解决方案 »

  1.   

    把count换成其他名称
    sql标准里面 count是关键字
      

  2.   

    不明白,多个字段Count出来的值是什么意思建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式http://topic.csdn.net/u/20091130/20/8343ee6a-417c-4c2d-9415-fa46604a00cf.html
       
       1. 你的 create table xxx .. 语句
       2. 你的 insert into xxx ... 语句
       3. 结果是什么样,(并给以简单的算法描述)
       4. 你用的数据库名称和版本(经常有人在MS SQL server版问 MySQL)
       
       这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。   
      

  3.   

    我的可以的
    --> 测试数据: [tb]
    if object_id('[tb]') is not null drop table [tb]
    create table [tb] (name varchar(18),count numeric(4,2),money numeric(8,4))
    insert into [tb]
    select '上海中国青年旅行社',-1.00,-240.0000 union all
    select '上海中国青年旅行社',-1.00,-210.0000 union all
    select '上海中国青年旅行社',5.00,475.0000 union all
    select '上海中国青年旅行社',10.00,1400.0000 union all
    select '上海中国青年旅行社',1.00,95.0000select * from tb
    where count>0
    /*
    name               count  money      
    ------------------ ------ ---------- 
    上海中国青年旅行社          5.00   475.0000
    上海中国青年旅行社          10.00  1400.0000
    上海中国青年旅行社          1.00   95.0000(所影响的行数为 3 行)
    */
      

  4.   

    ---加个[]
    select * from tb where [count]>0
      

  5.   

    --查单条
    select * from tb where [count] >= 0--对name合计进行查
    select name from tb group by name having(sum[count]) >= 0
      

  6.   

    select * from tb where [count]>0
    在程序中关键字要加[]定界
      

  7.   


    select * from tb where [count]>=0 为非负