Hi,
In your first statement, the SQL server will return only one record as Subra mentioned. It will be translated to return top 1.
The second statement is bad coding. This will return all records from the CustTable. The focus will be on the first record. The issue here is related to performance. Returning one record is way faster than returning a set of all records.
Your examples will have the same result, but the difference is performance.