#Which data operation statement in sql does not include?
The data operation statements in sql do not include the "CHANGE" statement, including "INSERT", "DELETE", and "UPDATE".
change is used to rename fields. Field types and constraints cannot be modified.
CHANGE To rename a column or change the type of a column, you need to give the old column name, new column name, and current type.
Recommended mysql video tutorial, address: https://www.php.cn/course/list/51.html
The above is the detailed content of Which data manipulation statement in SQL does not include?. For more information, please follow other related articles on the PHP Chinese website!