Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: How to join tables with different columns in each table

    USE [SK_Servicing]

    GO

    /****** Object: Table [dbo].[Case_Basic] Script Date: 04/29/2009 15:09:13 ******/

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    SET ANSI_PADDING ON

    GO

    CREATE TABLE [dbo].[Case_Basic](

    [cubs_case_guid] [uniqueidentifier] NOT NULL,

    [cubs_case_id] [int] NOT NULL,

    [case_status_code_id] [varchar](256) NULL,

    [case_status_code_description]...

  • RE: How to join tables with different columns in each table

    Here is what I would like to happen....

    I have an SQL database with 12 tables. All tables are linked to one commmon column "cubs_case_id". What I am trying to do...

Viewing 2 posts - 1 through 2 (of 2 total)