Skip to content

Commit 3735ae7

Browse files
committed
Support for views #409
1 parent 64242e6 commit 3735ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/fixtures/blog_sqlsrv.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ GO
202202

203203
CREATE VIEW [tag_usage]
204204
AS
205-
SELECT top 100 PERCENT name, COUNT(name) AS [count] FROM tags, post_tags WHERE tags.id = post_tags.tag_id GROUP BY name ORDER BY [count] DESC, name
205+
SELECT top 100 PERCENT name, COUNT_BIG(name) AS [count] FROM tags, post_tags WHERE tags.id = post_tags.tag_id GROUP BY name ORDER BY [count] DESC, name
206206
GO
207207

208208
CREATE TABLE [products](

0 commit comments

Comments
 (0)