Answer:
COUNT(*)
Step-by-step explanation:
COUNT (*) function is the function which returns numbers of the rows which satisfies WHERE clause of the SELECT statement.
There are the following examples to find that, how many rows in Vendor table have value "RAW" in the menu_code column:
=> SELECT COUNT(*) FROM Vendor WHERE menu_code = 'RAW';