Forum Replies Created

Viewing 4 posts - 61 through 64 (of 64 total)

  • RE: Middle Join

    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.

  • RE: Question of the Day for 21 Oct 2004

    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...

  • RE: Can a Select statment run thru variable?

    Here is a simple example

    Declare @sql nvarchar(100)

    SET @sql = 'SELECT * FROM <mytable>'

    EXEC sp_executesql @sql

  • RE: read parameter inner procedure

    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

Viewing 4 posts - 61 through 64 (of 64 total)