0
comment fait ca svp
In the university's table containing student data, the students' last names have been omitted. Correct this by adding a new column to the table. .................TABLE students .................. last_name VARCHAR(100);
4 Respostas
+ 6
ALTER
ADD
+ 1
ALTER TABLE students
ADD last_name VARCHAR(100);
0
.................TABLE students
.................. last_name VARCHAR(100);
Alter
Add
0
Answer:
ALTER
ADD