Viewing 15 posts - 466 through 480 (of 10,144 total)
If it isn't paging you are after, then consider NTILE(8) OVER()
NTILE()
January 9, 2018 at 7:51 am
I would to know your valuable suggestions for requirement as mentioned below.
Most of...
January 9, 2018 at 7:45 am
There's a rowcount Top operator in your plan with only one reason I can think of: SET ROWCOUNT issued before the query.
When I issue SET ROWCOUNT 1 before...
January 5, 2018 at 10:08 am
January 5, 2018 at 9:49 am
-- If VisitID is a string within PcsAssmntDataID bounded by spaces,
-- then you could use a string-splitter followed by LEN or something
-- else to collect the...
January 5, 2018 at 8:01 am
January 5, 2018 at 6:33 am
January 4, 2018 at 7:33 am
It's easy enough to model your query. This is sufficient:SELECT c1.City, c1.Postcode
FROM Customer c1
WHERE NOT EXISTS (
SELECT FanID
FROM Customer c2
WHERE c2.Lastname =...
January 4, 2018 at 7:26 am
January 4, 2018 at 5:58 am
January 4, 2018 at 5:51 am
Using your original table definition I created a temp table with 7047 rows and set to work.
January 4, 2018 at 5:50 am
January 4, 2018 at 5:43 am
DELETE g9January 4, 2018 at 3:28 am
Viewing 15 posts - 466 through 480 (of 10,144 total)