In Oracle, comments can be placed in queries. Comments can be a single line as well as multi-line.
-- comment goes here
SELECT student.id /* Author : rookienerd */ FROM student;
/* comment goes here */
SELECT student.id /* Author : rookienerd */ FROM student;