Viewing 15 posts - 1 through 15 (of 22 total)
Nice attempt. Here in this article you should explain why SQL server does like this. I'm referring to the Index Statistitics. You can also mention in the article that if...
May 11, 2013 at 7:07 am
February 21, 2012 at 12:37 am
February 13, 2012 at 10:34 pm
According to me you all are right . I posted this question with 4 options i.e. 1,2,3 and 5. The option 4 was not added by me. The site admin...
February 1, 2012 at 2:13 am
According to me you all are right . I posted this question with 4 options i.e. 1,2,3 and 5. The option 4 was not added by me. The site admin...
February 1, 2012 at 2:11 am
Hope the below link will give better clarification
Let me know if you need more explanation
December 22, 2011 at 2:18 am
Not sure but if you are filtering the records using pattern matching use Not Like instead of !=.
September 21, 2011 at 6:31 am
Check this links
September 21, 2011 at 6:27 am
The second select statement will return 1, as it will fail only after 1st insert statemnt of dbo.cuss2.
September 14, 2011 at 12:42 am
In MS SQL SERVER 2005 the create stament will work if you remove the extra comma but in MS SQL SERVER 2008 it won't work as Date is a...
March 29, 2011 at 2:51 am
Please provide the Table structure and what exact output you want.
January 19, 2011 at 1:12 am
Declare @CDate nvarchar(max);
Declare @VDate nvarchar(max);
Set @CDate = Select substring(DateOfPayBill,3,5) AS Date from Tvarizi
Set @VDate = Select substring(Recievedate,3,5) AS Date from Tvarizi
It is throwing error because your "Select substring(DateOfPayBill,3,5) AS Date...
December 9, 2010 at 7:04 am
Can you tell me How are you getting
3 FL NULL
9 NY G in your result set
December 9, 2010 at 6:14 am
Provide the complete table structure and your requirement clearly ...
Are you looking for something like below.(not sure) :unsure:
Update B
Set B.L_RID=A.RID
from TableB B inner join TableA A on B.ID=A.ID
December 9, 2010 at 6:02 am
Viewing 15 posts - 1 through 15 (of 22 total)