Basic PHP Programming Question: Download PHP PDF

How can we change the data type of a column of a table?

Tweet Share WhatsApp

Answer:

This will change the data type of a column:

ALTER TABLE table_name CHANGE colm_name same_colm_name [new data type]

Download PHP PDF Read All 139 PHP Questions
Previous QuestionNext Question
How can we know the number of days between two given dates using MySQL?What is meant by MIME?