SELECT TOP 1 * FROM

Viewed 32

SELECT TOP 1 * FROM

What does the * here means?

1 Answers

* operator means to select all the columns from the Table Here, we are not calling any explicit column. In the result, we get all the columns present in the Table. This link will help you with SQL https://www.w3schools.com/sql/

Related