怎么显示其他表?

解决方案 »

  1.   

    当然可以,select a.*,b.cnt
    from a,(select id,count(*) cnt from k group by id) b
    where a.id=b.id
      

  2.   

    建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式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.   


    select m.* from ta m,
    (select id , sum(val) from tb group by id) n
    where m.id = n.id用子查询,然后表连接.
      

  4.   

    可以的 
    与其他表关联就行了或者和自己表关联都可以
    比如
    select
     a.a,a.b,a.num
    from
     (select a,b,count(1) as num from ta group by a,b)a
    left join
     tb b
    on
      a.a=b.a