Answer:
The answer is: ALTER TABLE Customers ADD vip text;
Step-by-step explanation:
The basic syntax for the ALTER TABLE command in SQL for adding a new column is:
ALTER TABLE tableName ADD columnName dataType;
In this case, the following replacements must be made:
tableName = Customers
columnName = vip
dataType = text
Notice that the Pizza database referenced, is not included in the question, so the following assumptions were made:
- Column names are lowercase.
- vip values are stored in the same Customer table, instead of using a foreign key to another table.