Viewing 7 posts - 1 through 7 (of 7 total)
SELECT DPPD.[RECEIPTNO],CASH.CASHDATE AS MAILDATE,'' AS BANKNAME,'' AS CHEQUENO,
'CASH' AS INSTTYPE,'' AS INSTDATED,'' AS BRANCHNAME, 'CASH' AS BATCHTYPE , DPPD.AMOUNT AS AMOUNT, DPPD.DONHEAD , ...
November 2, 2012 at 6:11 am
it is in datetime datatype but i need only date ....
tables 1 has more than 50 k records
tables 2 is a configuration table has 50 records.
November 2, 2012 at 6:03 am
ALTER FUNCTION [dbo].[GetDontionHeadsforAuditReceipts]
(
@receiptno NVARCHAR(32), @partnerid NVARCHAR(32) , @currdate NVARCHAR(32)
)
RETURNS NVARCHAR(MAX)
AS
BEGIN
DECLARE @r NVARCHAR(MAX)
...
November 2, 2012 at 5:56 am
November 2, 2012 at 5:44 am
Thank you very much for both of you ... both the queries are working fine
January 17, 2008 at 10:06 pm
It is for top 3 .... for example of ties i've given one more row..... from that i want top three...
January 15, 2008 at 10:29 pm
hi,
i dont want to skip ranks .... i want it like 1, 2, 2, 4, 5, 5, 7......
i want to use RANK() and get the results
January 14, 2008 at 3:32 am
Viewing 7 posts - 1 through 7 (of 7 total)