Adding Comments to SQL Statements
In line comment start with two –, example Select StudentName from Student where ID=’5′ –This shows student name with student ID 5;
Block or Multi-Line comment with /* and */, example /* This shows student name with student ID 5 */ Select StudentName from Student where ID=’5′;
Select Command […]