标签:str style int customers 类型 操作 关键字 数据 col
DDL(Data Definition Languages)语句:数据定义语言
这些语句定义了不同的数据段、数据库、表、列、索引等数据库对象的定义。
常用的语句关键字主要包括 create、drop、alter 等。
# 1.修改表名 alter table wc rename to wc3; # 2.添加列 alter table customers add columns(wife string); # 3.删除列,不能用 alter table customers drop column wife; # 4.替换所有列,修改字段名 alter table customers replace columns(id int, name string, age int); # 5.将id列改名为no,类型为string alter table customers change column id no string;
标签:str style int customers 类型 操作 关键字 数据 col
原文地址:https://www.cnblogs.com/share23/p/10225513.html