Viewing 15 posts - 46 through 60 (of 389 total)
pmadhavapeddi22 (6/30/2014)
Why this question is worth 4 points ?:hehe:
+1
June 30, 2014 at 2:50 am
Very interesting question. Never used Escape.Thanks Andy.
June 26, 2014 at 2:02 am
Stuart Davies (6/19/2014)
BWFC (6/19/2014)
MethodTechnique
Procedure
June 19, 2014 at 1:29 am
Another confusing question 🙁
A newly hired developer who works remotely has asked for permission to run Profiler so he can see the reads/writes used by his queries
Permission to run...
June 19, 2014 at 12:59 am
mattech06 (6/18/2014)
So a better example would be using a table with ..
CREATE TABLE...
June 18, 2014 at 8:03 am
mattech06 (6/18/2014)
(b.TransType IN ('') OR '' =...
June 18, 2014 at 7:59 am
mattech06 (6/18/2014)
WHERE q.Description = 'Bob'
I'd want the q.Description to be the description of row number 1 as I can't hard code 'Bob' into the...
June 18, 2014 at 6:22 am
what about this 😉
;with qry
as
(select [amount],[Description], row_number() over (order by amount) as RN from #question)
select q.[description],sum(q1.amount) from qry q, #Question q1
where RN = 1
group by q.[description]
June 18, 2014 at 5:45 am
Viewing 15 posts - 46 through 60 (of 389 total)