skip to main content
Basic elements of SQL : Comments : C-Style comments
 

C-Style comments

SELECT empno, ename, /* employee’s department name */ dname
FROM
/* table-list */
emp, dept
/* we will join
USING deptno
*/
WHERE emp.deptno = dept.deptno;