Forum Replies Created

Viewing 15 posts - 721 through 735 (of 1,419 total)

  • Reply To: Sql query - Projected Monthly Revenue

    Yet another application where a tally function could be useful.  The projection is off by $1.11 perhaps due to rounding

    declare
    @revMTD ...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Help filtering my WHERE clause

    eyejay wrote:

    Each record has a PatID, Date, Doctor and upto four possible operation procedures (op1 to op4) that a patient may receive. There are 6 possible options for surgical procedure...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Are the posted questions getting worse?

    Yeah, it sort of tastes like sausage... or that's how they get you to try it.  They ask you "what's your least favorite meat?"  Then tell you it sort of...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: How to get PartId from table #trades that have wrong Code ON Code Value To when

    select t2.*
    from #map m
    join #trades t1 on m.CodeValueFrom=t1.Code
    ...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Are the posted questions getting worse?

    Neil Burton wrote:

    Lynn Pettis wrote:

    Steve Collins wrote:

    Spam is one thing but don't let anyone convince you to try scrapple.  It's not "the same thing" it's not even "similar" 🙂

    My father in-law made scrapple,...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Are the posted questions getting worse?

    Lynn Pettis wrote:

    My father in-law made scrapple, and my oldest daughter loved it. I really don't remember if he made it for the younger two before he died.

    I say to each...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Are the posted questions getting worse?

    Spam is one thing but don't let anyone convince you to try scrapple.  It's not "the same thing" it's not even "similar" 🙂

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: pivot multiple columns and transpose to same row sql server

    It seems you're looking to include the ROW1 column in the GROUP BY and ORDER BY clauses but not in the SELECT list.  Otherwise, it seems to be a standard...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Appttime add with duration how to get endtime please

    The math could look something like this

    declare @data table (app_time varchar(8), 
    ...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: How to write update query to check exist column by value 1 where it exist on tab

    Here's a simple way which avoids counting

    with
    a_cte as (select distinct PartId from #FeaturesvalueA),
    b_cte as (select distinct PartId from #FeaturesvalueB),
    x_cte as ((select * from a_cte except select *...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: pivot on 2 fields

    Based on the data that's been provided the two tmp_day values are '01' and '02' which don't seem to vary by month.  As to which column is subordinate to the...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: pivot on 2 fields

    An alternative to PIVOT is conditional aggregation.  The sample data provided only contains 1 value for 'tmp_day' which seems to not agree with the output.  So I changed the sample...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Common Table Expression Misunderstandings

    In the first paragraph it says "Windowing functions are limited to the SELECT and OVER clause..."  Correction, windowing functions are permitted in both the SELECT list as well as the...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Array into table.

    If the array is really JSON then Mark Cowne's answer seems correct.  If it's just a delimited string with repeating fixed length segments then something like this could work

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Please help to get duration between two 4 or 3 character string

    A middle way could be to use the very nice integer division Jeff uses for the time parts but then use framework functions to handle type conversions and calculation.  Supposedly,...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Viewing 15 posts - 721 through 735 (of 1,419 total)