SELECT TOP 1 * FROM
What does the * here means?
* 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/