HOW TO USE SELECT TOP CLAUSE IN SQL?

439 viewsSQLSQL
0

HOW TO USE SELECT TOP CLAUSE IN SQL?

Saraswat World Changed status to publish June 14, 2023
0
SELECT TOP in SQL
SELECT TOP in SQL
SELECT TOP

SELECT TOP clause is used to specify the number of records to return from top of the table.

Syntax of TOP clause in SQL server –

SELECT TOP number|PERCENT ColumnName1,…,ColumnNameN

FROM <TableName>

WHERE<condition> ;

Example of TOP clause in SQL server –– To select top 10 records of customers from city Berlin from customers table

SELECT TOP 10  *

FROM Customers

WHERE city=‘Berlin’;

Example- To select top 10%  records of customers from city Berlin from customers table

SELECT TOP 10 PERCENT *

FROM  Customers

WHERE city=‘Berlin’;

Saraswat World Changed status to publish June 14, 2023
Write your answer.

Posted

in

Tags:

Comments

Leave a Reply

Ganesh Ji Arti A Tribute to Dilip Kumar