Select in SQL Server


Select keyword uses to fetch data from the database table.
A select query is given below
Select * from tbl
To select top 10 records the query is given bellow
Select top 10 *from tbl
Note: Top keyword use to fetch the top 10 records from the database table.

Related Posts

What is the Use of isNaN Function in JavaScript? A Comprehensive Explanation for Effective Input Validation

In the world of JavaScript, input validation is a critical aspect of ensuring that user-provided data is processed correctly. One indispensa...