Viewing 5 posts - 1 through 5 (of 5 total)
FROM #TranID tId Join eft.[Tran] t on tId.id = t.TranID
INNER JOIN dbo.State ON dbo.State.StateId = t.StateId
JOIN Partner p ON t.partnerID = p.partnerID
But the result are...
January 4, 2008 at 5:13 am
I use the dbo.State table for the another fields why do you need to inner join it.....i'm new at database more of web developer
January 4, 2008 at 4:18 am
hi
Give me 1/2 hour to fix thing from asp.net and I'll get back to you.....
January 4, 2008 at 4:14 am
ALTER PROCEDURE [Eft].[SelectEditState]
(
@TranID varchar(max)
)
CREATE TABLE #TranID (id varchar(max) )
IF @TranID is not null
BEGIN
INSERT INTO #TranID select item FROM dbo.CommaSplit(@TranID)
END
SELECT
dbo.State.StateId, t.[dateTime] as [dateTime], p.partner as partner,...
January 4, 2008 at 3:37 am
Hi all
I have the same problem, i referencing a table before the Join, how do I solve it?
January 4, 2008 at 2:54 am
Viewing 5 posts - 1 through 5 (of 5 total)