Selecting records from DataTable?

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



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

.