Respuesta :

Answer:

SELECT COUNT(*) AS NumOfEstablishments

FROM establishment

WHERE aka_name  LIKE "Mc%";

Explanation:

The SQL or structured query language query statement uses the 'SELECT' clause to read or retrieve data from the database, the 'FROM' clause specifies the table from which data is retrieved (in this case, the establishment table) while the 'WHERE' clause uses the 'LIKE' operator to set a condition for the rows to be retrieved (in this case, NumOfEstablishments columns starting with Mc). The LIKE operator uses the '%' character to specify one or more characters.

ACCESS MORE