$ 0 0 Here is some T-SQL code to display only the last name for the first 5 records in the Northwind Customer table. select top 5 substring(ContactName, charindex(' ',ContactName)+1 , len(ContactName)) as [ ...