Generated steps
Step 1: Select rows where 'season' is 2007.
Step 2: Calculate the total number of games played by summing the 'wins', 'losses', and 'ties' columns, then add column 'total_games' to the existing table.
Step 3: Calculate the percentage of games won by dividing the 'wins' column by the 'total_games' column, then multiply by 100 and add column 'win_percentage' to the existing table.
Step 4: Select rows where 'win_percentage' is equal to or greater than 90.
Step 5: Use a `CASE` statement to return TRUE if the number of rows is greater than or equal to 1, otherwise return FALSE.