Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: SQLServerCentral apologizes and you can win a book

    I use window functions all the time now when working with inherited databases:

    CREATE VIEW vAssisterCert AS

    WITH DuplicateACStatus AS (

    SELECT RN=Row_number() OVER (Partition BY EnrollmentEntityAssisterId ORDER BY UpdatedDate DESC), EnrollmentEntityAssisterId, CertificationNumber,...

Viewing post 1 (of 1 total)