Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Query Analyzer and TSQL

    Usually I just want columns to set up my insert queries so I use:

    select sc.name from sysobjects so, syscolumns sc where

    so.id = sc.id

    and upper(so.name) = 'tablename' order by sc.colid;

    If...

Viewing post 1 (of 1 total)