Viewing 15 posts - 91 through 105 (of 119 total)
may i know what is the purpose of joining table2 there
and
seems you post only part of your query please post entire query to resolve your issue
November 27, 2012 at 9:32 pm
hi Eugene Elutin
thanks for your response i think according to you putting a left join is completely wrong approach there, this is what you said, may i right?
well...
November 22, 2012 at 11:32 pm
anthony.green (11/22/2012)
If you want TableA to TableB then you...
November 22, 2012 at 7:53 am
Thanks for your response but what i am going to do is
TableB TO TableA
From your example Every record in TableA is in TableB
when i want to do...
November 22, 2012 at 7:05 am
for give me i changed my post previous post
since the column 'Aid' is not null
Then every record in TableB has a Aid which is strictly in TableA
now which ...
November 22, 2012 at 5:57 am
dwain.c (11/15/2012)
;WITH CTE AS (
SELECT TOP 1 ID, TEXT1, aDate,...
November 19, 2012 at 5:59 am
Jason-299789 (11/16/2012)
November 16, 2012 at 7:42 am
DECLARE @v_TableSize TABLE (
Table_Name VARCHAR(100)
,ROWS BIGINT
...
October 25, 2012 at 8:23 am
Hi anamika
you are there
you already insert a identity col
instead of starting from 1 just start from 0
and then select the records using the remainder operator
select * from tbl where...
January 18, 2012 at 4:19 am
after a long war i found this from the hint from phil
DECLARE @Fpoint INT,@Tpoint INT
SET @Fpoint =25
SET @Tpoint =205
DECLARE @tbl AS TABLE (ID INT IDENTITY(1, 1), LNAme VARCHAR(50), FrmPoint INT,...
June 27, 2011 at 5:57 am
for give me phil i think sscrazy is your name, i said that statement to jayanth
June 27, 2011 at 5:07 am
These are the inputs
(@Fpoint, @Tpoint)
25,99 - allowed to insert
25,225 - raise a error
125,500- raise a error
25,500 - raise a error
401,500 - allowed to insert
June 27, 2011 at 4:58 am
hi SSC
it is the same thing what i did but in a different way
thanks ssCrazy
but i can insert 25-99 this interval because this interval not lies in the above
June 27, 2011 at 4:48 am
Viewing 15 posts - 91 through 105 (of 119 total)