Wednesday, 11 January 2017

Comments in SQL.

Comments can be used to explain section of statements.

Single Line Comments

-----Select All data from database Table
Select * from  TableName.

Multi Line Comments

/* Select all column form the database table*/
Select * form Tablename

Note:- Here TableName is our TableName like Student,Employee

No comments:

NOCOUNT In SQL Server This Statement is used to stop the message that shows the count of the number of rows affected by the SQL statement...