Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Combine two SQL tables as one?

    I think that following script would help you..

    SELECT *

    INTO <NEW TABLE NAME>

    FROM <TABLE 1>

    INSERT INTO <NEW TABLE NAME>

    SELECT *

    FROM <TABLE 2>

    February 16, 2004 at 4:56 am

    #494152

Viewing post 1 (of 1 total)