Forum Replies Created

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

  • RE: Number of Trades

    OOPs did not see that ... Corrected code Thank you.. Please let me know 

    SELECT User.TraderID, User.NameofTrader, User.RegionofTrader, Trade.Ticker, Trade.TraderDate, Count(*) AS NumTrades
    FROM [User] INNER JOIN Trade...

  • RE: Number of Trades


    Select  U.TraderID, U.NameofTrader, U.RegionofTrader,   Count(*) NumTrades
    from Trading  T
    left join on user   U U.TraderID = T.TraderID
    Group by U.TraderID, U.NameofTrader, U.RegionofTrader
    order by count(*) desc

  • RE: SQL Server Over Partition

    INSERT INTO

  • RE: SQL Server Over Partition

    SET ANSI_NULLS

  • RE: SQL Server Over Partition

    remove duplicate consecutive rows using the key PI, m and TT.

    Create transactions when PI, M, TT changes based on the order of date.  When TT changes a new...

  • RE: SQL Server Over Partition

    Obtained results

    January 2, 2018 at 8:29 am

    #1974067

  • RE: performance information for sql server and databases

    We have no SQL monitoring tools. This is a small shop

  • RE: performance information for sql server and databases

    I need assistance in a SQL that has a performance issue . The query is running too long. There is a Table:  Archive with Validated addresses with 1,063,349 rows. There is...

  • Viewing 8 posts - 1 through 8 (of 8 total)