Home / CSE / SQL Basics :: Discussion

Discussion :: SQL Basics

  1. A command that lets you change one or more fields in a record is

  2. A.

     Insert

    B.

     Modify

    C.

     Look-up

    D.

     All of the above

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Sometimes we need to change the data type of a column. To do this, we use the ALTER TABLE Modify Column command.
    Sytax:
    ALTER TABLE table_name
    MODIFY column_name "New Data Type"


Be The First To Comment