Which of these statements adds a column to the team table?

ALTER TABLE team
ADD position VARCHAR(20);
INSERT INTO team
VALUES ('point guard');
UPDATE team
SET position = 'point guard';
DROP TABLE team;

That's right! We can use ALTER on a table with a column name and a data type.

Not quite! We can use ALTER on a table with a column name and a data type.