I have the following SQL
我有以下SQL
SELECT CNumber, MAX(FormSubmitted), Score
FROM dbo.vw_MSA
WHERE (Score IS NOT NULL)
GROUP BY CNumber, Score
SELECT I have the following SQL
我有以下SQL
SELECT CNumber, MAX(FormSubmitted), Score
FROM dbo.vw_MSA
WHERE (Score IS NOT NULL)
GROUP BY CNumber, Score
SELECT