Forum Replies Created

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

  • RE: Count value once in 30 days

    I got a head-ache from this really, b'cos I thought about that as well and this kind of logic is new for me. I talked to the Client and they...

  • RE: Count value once in 30 days

    Sure, is this what you mean?

    create table #Something

    (

    CustID Char(10),

    SurveyId char(5),

    ResponseDate datetime

    )

    insert #Something

    select 'Cust1', '100', '5/6/13' union all

    select...

  • RE: Count value once in 30 days

    Hi Sean,

    Thanks, but it's not just distinct customer, I need to count based on whether his response to survey was in the last 30 days. If he responded to more...

  • RE: Any way to hide column names from result set?

    Has anyone post a solution to this?

    I have the same issue that when I execute a stored procedure, thro a sql job via sql agent, I get the output to...

  • RE: Indexed Views

    @hugo:

    I'm not an expert in SQL. I was also under the impression that Cursors are a big NO and hence should be avoided at all costs. I'm only...

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