Modify the datatype program in SQL

 

Question:

Modify the datatype

Write a query to change the type of field Ac_Available in the buses table to varchar(5)


CODE:

alter table buses MODIFY Ac_Available varchar(5);
Previous
Next Post »