I'm not great at SQL so this question should be very easy to answer :) I have a column titled Grades and all values are currently NULL. I would like to update the Grades column to "No Data" if it's NULL
This is what I have so far: Select (ISNULL(Grade, 'test'))
From bleaTest
Thank you in advance!!