-3

MySqlでこのクエリを実行しているので:

select count distinct(prim_key) IN table_1 inner join
table_2 on ID group by column name

すべての PSU の特定の状態の合計エントリを知りたいです。テーブル table_1 は、フィールド エージェンシーごとの合計エントリを示します。私を助けてください。

4

2 に答える 2

0
select count(distinct prim_key) 
from table_1 t1
inner join table_2 t2 on t1.ID = t2.ID
group by state
于 2013-10-25T09:54:25.537 に答える
0

これを試して::

select 
count (distinct(prim_key))
from table_1 
inner join table_2 on table1.ID=table_2.ID

 group by column name
于 2013-10-25T09:54:58.510 に答える