Viewing 15 posts - 166 through 180 (of 189 total)
Great Work. Keep Posting about Big Data. 🙂
June 26, 2013 at 5:14 am
any answer for this question please.?
June 15, 2013 at 1:10 am
what you are trying to do here is to add a varchar value to int value. which is not possible.
think a little bit more logical. if you dont get the...
June 15, 2013 at 12:41 am
it is the same post posted by me on different forum. 😎
June 15, 2013 at 12:39 am
any sql master for help.?
June 14, 2013 at 11:41 pm
Mr. Kapsicum (6/14/2013)
@ob_mark varchar(500),
@tot varchar(500),
@mv_mark1 varchar(500),
@ob_mark1 varchar(500)
SELECT @mv_mark =mv_mark
FROM internal_nontheory_mark
WHERE roll_no = '11csu002' AND regulation_sub_id = 15849
SELECT @ob_mark = ob_mark
FROM internal_nontheory_mark
WHERE roll_no = '11csu002' AND regulation_sub_id = 15849
SET...
June 14, 2013 at 11:40 pm
DECLARE @mv_mark varchar(500),
@ob_mark varchar(500),
@tot varchar(500),
@mv_mark1 varchar(500),
@ob_mark1 varchar(500)
SELECT @mv_mark =mv_mark
FROM internal_nontheory_mark
WHERE roll_no = '11csu002' AND regulation_sub_id = 15849
SELECT @ob_mark = ob_mark
FROM internal_nontheory_mark
WHERE roll_no = '11csu002' AND regulation_sub_id = 15849
SET @mv_mark1 =...
June 14, 2013 at 11:38 pm
12.00 is not an integer. so you can convert this value to an int.
if it is 12 then you can do it.:hehe:
June 14, 2013 at 10:43 pm
Toreador (5/13/2013)
May 13, 2013 at 8:32 am
an identity column against each row would serve the purpose.....
you can use merge join then
May 6, 2013 at 1:56 am
Danny Ocean (5/5/2013)
I think author did mention it clearly that execute all statement in a single batch.Due to that i lose my points..:doze:
Same goes for me as well.... just lost...
May 6, 2013 at 1:04 am
Kingston Dhasian (4/26/2013)
Mr. Kapsicum (4/26/2013)
That is exactly what i was thinking, but How.? its Syntaxa complete Answer will be highly appreciated.
You might appreciate a complete answer but it will not...
April 26, 2013 at 6:29 am
Kingston Dhasian (4/26/2013)
If the column has been updated, you can do a ROLLBACK in the trigger with...
April 26, 2013 at 6:07 am
friends, since i am new to sql, i have little confusion with this query ( i.e. choice number two and four)
Choice two: SELECT ID, COALESCE(IsAvailable, GETDATE()) FROM #Test
choice four:...
April 23, 2013 at 5:58 am
Viewing 15 posts - 166 through 180 (of 189 total)