Final answer:
To find records in the 'cats' table with names that include the phrase 'am', use 'SELECT * FROM cats WHERE name LIKE '%am%';'. The '%' represents a wildcard, allowing 'am' to be part of a longer string.
Step-by-step explanation:
To show fields from the table "cats" where part of the name includes the phrase "am", you would use the SQL LIKE operator in your command. The SQL command would look as follows:
SELECT * FROM cats WHERE name LIKE '%am%';
This command selects all the columns (SELECT *) from the table "cats" where the name field contains the phrase "am" anywhere within it. The percentage symbols (%) are wildcard characters that represent any sequence of zero or more characters, allowing for the search phrase to be part of a longer string in the name field.