Explain PRIMARY KEY constraint in SQL Server.
Bookmark this Blog in your Favorites
Labels: TOP clause in SQL Server
Labels: ROUND () function in SQL Server
Labels: HAVING clause in SQL Server
Labels: GROUPBY function in SQL Server
Labels: LAST function in SQL Server
Labels: FIRST function in SQL Server
Labels: AVG function in SQL Server
Labels: SUM function in SQL Server
Labels: MAX function in SQL Server
Labels: MIN function in SQL Server
Using COUNT (Column_Name) function
Where EmployeeName
Select count(distinct Employees) as NumberofEmployees from Employees
Labels: COUNT () function in SQL Server
The ALIASES clause is used to give another name for a column or a table. This is mostly used to show the output meaningful.
Using ALIAS in a Column
Labels: ALIASES clause in SQL Server
The DISTINCT clause is normally used with SQL SELECT statement to get unique dataset entries from a database table.
from Employees
Labels: DISTINCT clause in SQL Server
The BETWEEN operator is used to view data between two values.
Select * from Employees
where Joiningdate
between ’06-Jan-2006’ and ’15-July-2007’
Labels: BETWEEN Operator in SQL Server
Labels: IN condition in SQL Server
The AND & OR is used to join two or more conditions in a WHERE clause.
where EmployeeName = ‘Steve’
and City = ‘
where EmployeeName = ‘Steve’
or City = ‘
This Query will display the each person with EmployeeName equal to “Steve” or City equal to “
Labels: AND, OR conditions in SQL Server
The UNION command is used to select the related data from two different tables, while using the UNION command all the selected columns have to to be of the same data type.
Select EmployeeName from Employees
union
Select EmployeeName from Department
Ex :
Select EmployeeName from Employees
union all
Select EmployeeName from Department
Labels: UNION, UNIONALL commands in SQL Server