📜  sql alter column - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:01.489000             🧑  作者: Mango

代码示例5
Changes the data type of a table’s column.
Example: In the ‘users’ table, make the column ‘incept_date’ into a
‘datetime’ type.
ALTER TABLE users
ALTER COLUMN incept_date datetime;