In the Learn SQL by Building a Student Database: Part 1 I am stuck. In the hint it says 1. Use the ALTER TABLE
, ADD COLUMN
, and INT
keywords
2. Here’s an example: ALTER TABLE <table_name> ADD COLUMN <column_name> <DATA_TYPE>;
3. Type ALTER TABLE students ADD COLUMN major_id INT;
into the psql
promptcodeally@7c9db0a6d1e9:~/project$ ALTER TABLE students ADD COLUMN major_id INT;
bash: ALTER: command not found
What am I doing wrong? I cannot move forward.