首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

sql语句求解解决办法

2012-01-28 
sql语句求解有两个表表一:note_idnoteCategory_id1122314152表二:noteCategory_idnoteCategoryName1bank2g

sql语句求解
有两个表
表一:
note_id     noteCategory_id
1                                 1
2                                 2
3                                 1
4                                 1
5                                 2
表二:
noteCategory_id   noteCategoryName
1                                     bank
2                                     government

求sql语句或存储过程:
得到:
noteCategory_id   noteCategoryName   num
1                                     bank                       3
2                                     government           2
num为noteCategory   所具有的note_id的数量,从表一中得到   的。
谢了哦


[解决办法]
select a.*,b.num from (select noteCategory_id,count(*) num from 表一 group by noteCategory_id)a,表二 b where a.noteCategory_id=b.noteCategory_id
[解决办法]
select a.noteCategory_id,b.noteCategoryName,count(1)
from table1 a
left join table2 b on a.noteCategory_id=b.noteCategory_id
gourp by a.noteCategory_id,b.noteCategoryName
[解决办法]
select a.noteCategory_id,a.noteCategoryName,count(b.noteCategory_id)num
from 表二 a left join 表一 b on a.noteCategory_id=b.noteCategory_id
group by a.noteCategory_id,a.noteCategoryName

noteCategory_id noteCategoryName num
--------------- -------------------- -----------
1 bank 3
2 government 2

(所影响的行数为 2 行)
[解决办法]


select
T.noteCategory_id,
T.noteCategoryName,
(select count(*) from 表一 where noteCategory_id=T.noteCategory_id ) as num
from 表二 AS T

热点排行