我正在尝试了解聚合函数如何在 SQL 中工作,但我无法计算出如何计算一个值在查询中出现的次数。
我使用MSSQL 2008,我尝试的一切似乎都会导致错误。
以下是我的查询:
SELECT category,
template,
galleryshortDescription,
galleryLongDescription,
GalleryName,
GalleryTitle,
GalleryID,
GalleryCreatedDate,
GalleryLastUpdated,
GalleryPublished,
GalleryViews,
ObjectID,
GalleryDescription,
HtmlMetaKeywords,
HtmlMetaDescription
FROM dbo.ImageGallery
我想返回该category
字段以及它在此查询中出现的总次数,我尝试使用
count (category) AS category_counter
任何建议都非常感谢
提前致谢