G
Guest
Is it possible to run a select query on DataTable object?
Say for instance, my DataTable had following structure
StudentID, SubjectID, Score
Now, I want list of Score where Score IS NOT NULL
SELECT Score
From TableName
WHERE Score IS NOT NULL
ORDER BY Score
Thanks
Say for instance, my DataTable had following structure
StudentID, SubjectID, Score
Now, I want list of Score where Score IS NOT NULL
SELECT Score
From TableName
WHERE Score IS NOT NULL
ORDER BY Score
Thanks