Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Column values disappear after adding ORDER BY clause

    Hi, the table definitions are:

    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[LeadAllocation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)

    drop table [dbo].[LeadAllocation]

    GO

    CREATE TABLE [dbo].[LeadAllocation] (

    [Date] [datetime] NULL ,

    [ClientId] [int] NULL ,

    [ContactId]...

Viewing post 1 (of 2 total)