Forum Replies Created

Viewing 15 posts - 331 through 345 (of 842 total)

  • RE: Today's Random Word!

    Ed Wagner - Tuesday, September 18, 2018 1:22 PM

    Hugo Kornelis - Tuesday, September 18, 2018 12:40 PM

  • RE: Rewrite query

    Jason A. Long - Monday, September 17, 2018 8:33 AM

    below86 - Monday, September 17, 2018 8:19 AM

  • RE: Today's Random Word!

    ZZartin - Monday, September 17, 2018 7:41 AM

    Ed Wagner - Monday, September 17, 2018 7:17 AM

    September 17, 2018 at 8:24 am

    #2005955

  • RE: Rewrite query

    Jason A. Long - Friday, September 14, 2018 2:12 PM

    In addition to the ROW_NUMBER method offered up by below86, ...

    I said to...

  • RE: Talking baseball

    below86 - Monday, July 23, 2018 2:10 PM

    below86 - Thursday, June 28, 2018 8:29 AM

  • RE: Today's Random Word!

    Ed Wagner - Wednesday, September 12, 2018 12:24 PM

    Always Wins

    Alabama football 😀

  • RE: Rewrite query

    No problem, sometimes helps to have another set of eyes.
    See if this would be any faster:
    SELECT t0.IdSeller, t0.ProductsCount, t0.AvgPrice,
        MAX(Date) AS Maxdate
    FROM SellerProductsSnapshots t0
        INNER...

  • RE: Rewrite query

    This may get the same thing, without data I can't test:
    SELECT t0.IdSeller, t0.ProductsCount, t0.AvgPrice,
        MAX(Date) AS Maxdate
    FROM SellerProductsSnapshots t0
    WHERE IdSeller IN (SELECT Id FROM #SellersTable)

  • RE: Adding a row to a column set

    As others have said running the SQL as written returns nothing, so option one is wrong. This part makes it wrong "and the Options column with 3 XML nodes."
    Why...

  • RE: Today's Random Word!

    ManicStar - Wednesday, September 5, 2018 11:17 AM

    Jonathan AC Roberts - Wednesday, September 5, 2018 8:27 AM

  • RE: Today's Random Word!

    Sean Lange - Wednesday, September 5, 2018 7:57 AM

    Ed Wagner - Wednesday, September 5, 2018 7:41 AM

  • RE: Today's Random Word!

    Ed Wagner - Tuesday, August 28, 2018 6:38 AM

    TomThomson - Tuesday, August 28, 2018 4:38 AM

    August 28, 2018 at 7:36 am

    #2003586

  • RE: Limiting the Ability to Concentrate and Collaborate

    Jeff Moden - Sunday, August 26, 2018 11:30 PM

    My opinion is both brief and blunt... open office spaces suck.

    They're too noisy, have...

  • RE: Fun at Work

    Steve Jones - SSC Editor - Friday, August 24, 2018 9:28 AM

    The photographer at Redgate had actually seen the park and was...

  • RE: EXCEPT

    They don't have to be the same name.  Just same number of columns and same order and data type.

Viewing 15 posts - 331 through 345 (of 842 total)