List the comments on the columns for the STUDENT table along with their column names.
What will be an ideal response?
```SELECT column_name, comments
FROM all_col_comments
WHERE table_name = 'STUDENT'
AND owner = 'STUDENT'```
Computer Science & Information Technology