Discussion :: SQL Basics
- A command that lets you change one or more fields in a record is
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