Viewing 6 posts - 1 through 6 (of 6 total)
Great example... Sadequal...
Very useful.. Thanks
July 30, 2009 at 12:06 am
skjoldtc (5/7/2009)
ALZDBA (5/7/2009)
skjoldtc (5/7/2009)
May 7, 2009 at 7:40 am
Hi, Sylvia
I totally agree with you, many of the developers are using meaningless aliasing and that would be very tough to debug in future and waste of time. even i...
May 7, 2009 at 5:41 am
Here is another simple SP for Paging that works even in SQL-2k.
------------------------------------------
CREATE Procedure usp_GetPagedOrders
@PageIndex integer,
@PageSize integer
---*** HOW TO USE USE...
January 6, 2009 at 2:35 am
This query takes care if some IDs are missing..... 🙂
SELECT Accounts.ID, CONVERT(varchar(50),TransactionDate,101) AS TransactionDate, Balance,
( SELECT Sum( Balance )
FROM ( SELECT Top 5 A.Balance
FROM...
November 28, 2008 at 4:19 am
Below my Query is taking if some IDs are missing... 🙂
SELECT Accounts.ID, CONVERT(varchar(50),TransactionDate,101) AS TransactionDate, Balance,
( SELECT Sum( Balance )
FROM ( SELECT Top 5 A.Balance
...
November 28, 2008 at 4:17 am
Viewing 6 posts - 1 through 6 (of 6 total)