Viewing 4 posts - 61 through 64 (of 64 total)
There is no such thing as a middle join. The question you saw was a trick question where the word "middle" becomes an alias for one of the tables.
October 21, 2004 at 4:44 am
I thought this was a very amusing trick question.
It makes me laught to see how seriously some people seem to take the QOD, which is supposed to be a...
October 21, 2004 at 4:39 am
Here is a simple example
Declare @sql nvarchar(100)
SET @sql = 'SELECT * FROM <mytable>'
EXEC sp_executesql @sql
April 6, 2004 at 2:53 am
If I understand you correctly, you could use
-- this is the calling procedure
create procedure test1
as
Declare @give_param varchar(100)
Declare @a int
Declare @b-2 char(10)
Set @a = 10
Set
April 2, 2004 at 3:26 am
Viewing 4 posts - 61 through 64 (of 64 total)