Answer:
The correct answer for the given question is "last ".
Explanation:
When we add a column into the table so the column will add in the last of the table .We can use alter command in SQL to added the column in the table.
The syntax for adding new column into the table is given below .
ALTER TABLE table_name
ADD column_name datatype;
For example
Suppose we have to add the address column into the student table.
ALTER TABLE student
ADD address varchar (50);
This query will add the column in last of the table .