Q. Modify table Empl, add another column called Grade of VARCHAR type, size 1 into it.

Table --

 
Answer = 

Alter table Empl add column grade varchar(1) ;

10 Comments

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

  1. Shouldn't it be varchar type?

    ReplyDelete
  2. char(1) as mention in que i.e. Grade of VARCHAR type, size 1 into it.

    ReplyDelete
  3. ALTER table empl ADD(grade VARCHAR(1));
    IS THIS WRONG?

    ReplyDelete
    Replies
    1. When I am trying to do the same, it displays an error for me

      Delete
  4. you missed the term column after 'add' hope this helps!

    ReplyDelete
  5. It should not use 'column '

    ReplyDelete

Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post