TipsMake
Newest

Tags : limit the result set in sql server

HAVING clause in SQL Server
SQL Server 25 May 2019

HAVING clause in SQL Server

the having clause is used in conjunction with the group by clause in sql server (transact-sql) to limit the group of returned rows, only when the condition is met is true.

Read More
SELECT TOP command in SQL Server
SQL Server 25 May 2019

SELECT TOP command in SQL Server

in sql server, the select top command is used to retrieve records from one or more tables in sql server and limit the number of return records based on a fixed value or percentage.

Read More