Viewing 15 posts - 2,446 through 2,460 (of 10,144 total)
CREATE TABLE #NewsEntities (NewsEntity INT NOT NULL identity(1,1), NewsId INT, EntityId INT)
INSERT INTO #NewsEntities (NewsId, EntityId)
VALUES
(1,1),(1,2),(1,3),
(2,1),(2,5),(2,3),
(3,5),(3,2),(3,3)
SELECT n.NewsId
FROM #NewsEntities n
WHERE EntityId = 1
AND NOT EXISTS (
SELECT 1
FROM #NewsEntities...
June 11, 2015 at 3:16 am
drew.allen (6/10/2015)
ChrisM@Work (6/10/2015)
;WITH CTE AS(
SELECT ROW_NUMBER() OVER(PARTITION BY Id ORDER BY ID ASC) AS RowNum ,*
FROM #TEMP
)
UPDATE #TEMP2 CTE
SET SearchedBy =CASEWHEN RowNum=1 THEN CREATEDBY
WHEN RowNum...
June 11, 2015 at 1:56 am
jay-125866 (6/10/2015)
The issue remaining is that the Product Pencil is also shown in the result. It's not supposed to be there since...
June 11, 2015 at 1:54 am
Your syntax is a little out:
;WITH CTE AS(
SELECT ROW_NUMBER() OVER(PARTITION BY Id ORDER BY ID ASC) AS RowNum ,*
FROM #TEMP
)
UPDATE #TEMP2 CTE
SET SearchedBy =CASEWHEN RowNum=1 THEN CREATEDBY
WHEN RowNum > 1...
June 10, 2015 at 10:09 am
Try this:
;WITH PaidProducts AS (
SELECT *,
rn1 = ROW_NUMBER() OVER (PARTITION BY productId ORDER BY logDate DESC),
rn2 = CASE ProductStatus WHEN 'paid' THEN ROW_NUMBER() OVER (PARTITION BY productId, ProductStatus ORDER...
June 10, 2015 at 9:40 am
jay-125866 (6/9/2015)
I need to report the original paid date, the most recent status, and most...
June 10, 2015 at 9:16 am
gissah (6/10/2015)
June 10, 2015 at 8:35 am
jeff.born (6/9/2015)
ChrisM@Work (6/9/2015)
June 10, 2015 at 8:03 am
Zohaib Anwar (6/10/2015)
ChrisM@Work (6/10/2015)
;
WITH PreAgg AS (
SELECT
p.id,
HourBucket = DATEDIFF(hour,ISNULL(p.DueDate,GETDATE()),CAST(GETDATE() AS DATE))/24,
paidAmount = ISNULL(SUM(CASE WHEN x.Paid = 1 THEN tdPaid.DebitAmount -...
June 10, 2015 at 7:15 am
You should be expecting a final query something like this:
;
WITH PreAgg AS (
SELECT
p.id,
HourBucket = DATEDIFF(hour,ISNULL(p.DueDate,GETDATE()),CAST(GETDATE() AS DATE))/24,
paidAmount = ISNULL(SUM(CASE WHEN x.Paid = 1 THEN tdPaid.DebitAmount - tdPaid.CreditAmount ELSE 0...
June 10, 2015 at 6:40 am
Zohaib Anwar (6/10/2015)
ChrisM@Work (6/10/2015)
Zohaib Anwar (6/10/2015)
June 10, 2015 at 6:15 am
Zohaib Anwar (6/10/2015)
...
June 10, 2015 at 6:01 am
Zohaib Anwar (6/10/2015)
ChrisM@Work (6/10/2015)
Zohaib Anwar (6/10/2015)
June 10, 2015 at 5:24 am
Zohaib Anwar (6/10/2015)
June 10, 2015 at 5:04 am
Grant Fritchey (6/9/2015)
So tempted to whip out "DO YOU KNOW WHO I AM?"Time to walk away from the forums for a few...
Where the **** is that tent?
Good lord Grant! You...
June 9, 2015 at 9:32 am
Viewing 15 posts - 2,446 through 2,460 (of 10,144 total)