SQL Please help me by filling in the 5 ______ blanks below with the correct SQL
ID: 3591122 • Letter: S
Question
SQL Please help me by filling in the 5 ______ blanks below with the correct SQL commands. Thank you!!
Fill in the blanks in the SQL statement below to add to the vendors table a new character field named waiver that is one character in length.
______________ vendors _________________ waiver CHAR(1);
Fill in the blanks in the SQL statement below to change the name in the vendors table a character field that is 60 characters in length.
________________ vendors _______________ name _______________ ;
Explanation / Answer
ALTER TABLE vendors ADD waiver CHAR(1);
Here to add a new field in to a table we use Alter Table
command as above which is a DDL command.
ALTER TABLE vendors ALTER COLUMN name CHAR(60);
Here to modify a exisiting field in the table we use Alter Table
command as above which is a DDL command.
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.