Viewing 4 posts - 1 through 4 (of 4 total)
I am trying to find a query which will give different results for these join variations. As you mentioned that the results will be different, do you have any examples...
July 1, 2002 at 12:10 pm
create table test ( c1 int, c2 text)
go
create proc test_text ( @var text output )
as
select @var= c2 from test
go
exec test_text
This throws error, assignment is wrong.
May 28, 2002 at 5:27 am
When will the need arise to store the HTML as Binary ? I 'm the scenario.
May 28, 2002 at 5:22 am
You haven't mentioned about any indexes on the tableA.
Can you try with clustered index on (PROD_CD,DRAW_NBR)
Then you can get rid of the MAX function ..
May 15, 2002 at 1:01 am
Viewing 4 posts - 1 through 4 (of 4 total)