Creating test table and adding data

The following SQL statement selects all customers with a City starting with any character, followed by "erlin": SELECT * FROM [TrainingDB].[dbo].Customer WHERE City LIKE '_erlin%' The following SQL statement selects all customers with a City starting with character b or s p ................
................