Forum Replies Created

Viewing 15 posts - 766 through 780 (of 1,419 total)

  • Reply To: Update Column Based on Criteria from Other Columns -- improved post included DDL

    Integer division comes in handy when creating groupings based on ranges of integers,  aka "buckets".  Something like this

    select t.*, v.*, cycle.*
    from #mytable t
    ...

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

  • Reply To: Filling in Empty Rows

    Well well, this is the first time I can recall ever using a RIGHT JOIN in a "real" query.  It seems to make sense here.

    declare @dt ...

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

  • Reply To: Filling in Empty Rows

    The data looks something like this?

    drop table if exists #conditions;
    go
    create table #conditions(
    some_dt date not null,
    code ...

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

  • Reply To: How to filter out the data?

    DECLARE @v_order_id INT = 1;

    WITH
    myData AS(
    SELECT 'all_codes_set' AS code_type,
    1 AS start_id,
    100 AS end_id,
    1 AS order_id
    UNION ALL
    SELECT 'all_codes_set' AS code_type,
    101 AS start_id,
    110 AS end_id,
    2 AS order_id
    UNION...

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

  • Reply To: How to filter out the data?

    Ok, the non-tvf same approach uses an additional CTE and SELECT TOP(n).  The following code is to be embedded in the SQL to replace dbo.fnTally.  The maximum # of rows...

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

  • Reply To: How to filter out the data?

    The fastest way to reliably get an answer is not necessarily the "best" way but it's functional.  Afaik something like this would work.  It uses a tally function to expand...

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

  • Reply To: Is there anything equivalent to a Last() Function

    Yes the LAST_VALUE function is a windowing function.  One way to summarize would be to use a common table expression.

    with lv_cte(PrimaryKey, SearchValue, OtherNumericValue, LastValue) as (
    ...

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

  • Reply To: Is there anything equivalent to a Last() Function

    There's the LAST_VALUE function.  In order to return the "last value" (when the set is ordered by:  OVER (ORDER BY ...)) across the entire window of rows (in this case...

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

  • Reply To: query filter

    Style-wise, the joins are specified in "more specific to less specific" order which imo is not the standard way and it's less read-able.  Without knowing anything about the underlying data...

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

  • Reply To: query filter

    The query references "a couple of joined tables" but the code listed only has 1 table 't' in the FROM clause.  The error message "multi-part identifer ..." happens when the...

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

  • Reply To: Query is hanging

    The nested subqueries seem not to be necessary imo.  What is the point of selecting the top 15 rows only to select the top 1 from that subset using the...

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

  • Reply To: is value is contained in column - new column

    It appears the OP is referencing Excel functions and column arrays.  In this query the calculated NewColumn equals the DesiredColumn.

    drop table if exists #tTable;
    go
    create table #tTable(
    ...

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

  • Reply To: How often have you needed to start a sequence of numbers at other than 1 or 0?

    Jeff Moden wrote:

    Awesome stats.  Thank you good sir.  And, based on your previous replies, the other 13 or so all start at "0"?

    Yes, the other 13 start with 0, meaning 'dbo.fnTally(0,...

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

  • Reply To: How often have you needed to start a sequence of numbers at other than 1 or 0?

    I use 2 monster .sql scripts to answer SSC/SO questions.  One currently has 13,787 lines and contains 32 occurrences of 'fnTally' of which 24 specify the sequence begin with 1. ...

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

  • Reply To: How often have you needed to start a sequence of numbers at other than 1 or 0?

    Jeff Moden wrote:

    Thanks for the feedback, Steve.  So, from the sounds of it, you don't use a starting value of other than "0" or "1", correct?

    Those are my two choices so...

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

Viewing 15 posts - 766 through 780 (of 1,419 total)