Viewing 9 posts - 1 through 9 (of 9 total)
Thanks Grant,
I will try with TOP and ORDER BY and see the difference.
Thanks again,
Rishi
March 6, 2008 at 11:46 pm
Thanks Malcolm,
I will check CTE and try to implement the solution.
Thanks
Rishi
March 6, 2008 at 11:42 pm
Please post a full query and always use hint (NOLOCK) with 'WITH'.
table A WITH (NOLOCK) for example
Cheers,
Rishi
March 6, 2008 at 11:47 am
Many times we need to use function 'MAX' in 'Select' clause specially for dates. Does anyone has a thought on different approach.
For example
select max(a.closedate) as closedate, a.offerid
from a...
March 6, 2008 at 11:33 am
Greg,
How can we improve the following query?
-------------------------
--------------------------
WHERE
filter 1
...
March 6, 2008 at 11:23 am
Hi,
I have a problem and can you suggest a solution without using a cursor.
Problem:
The structure of the Table A is
ID Txt
1 ...
March 6, 2008 at 6:22 am
Thanks GAJ, Matt and Jeff for the valuable information on functions usage.
Rishi
March 5, 2008 at 12:10 am
Greg, a very nice and useful article.I understand the demerit of using functions in 'Where' clause.
Do/does you/anybody have any idea/s on usage of function in 'Select' clause OR in 'JOINS'...
March 3, 2008 at 10:36 pm
Jacob - The information given in this article is certainly a food for thought and people can use the option whatever relevant to their context. I have used 'If Exists'...
February 27, 2008 at 4:42 am
Viewing 9 posts - 1 through 9 (of 9 total)